Submission #575261
Source Code Expand
Copy
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] lines = br.readLine().split(" "); int a = Integer.parseInt(lines[0]); int d = Integer.parseInt(lines[1]); if(a*(d+1) > (a+1)*d){ System.out.println(a*(d+1)); }else{ System.out.println((a+1)*d); } } }
Submission Info
Submission Time | |
---|---|
Task | A - ゲーム |
User | yunyun8686 |
Language | Java (OpenJDK 1.7.0) |
Score | 100 |
Code Size | 521 Byte |
Status | AC |
Exec Time | 335 ms |
Memory | 22476 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample-01.txt, sample-02.txt, sample-03.txt |
All | test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
sample-01.txt | AC | 302 ms | 22416 KB |
sample-02.txt | AC | 306 ms | 22396 KB |
sample-03.txt | AC | 309 ms | 22436 KB |
test-01.txt | AC | 335 ms | 22460 KB |
test-02.txt | AC | 301 ms | 22416 KB |
test-03.txt | AC | 320 ms | 22408 KB |
test-04.txt | AC | 310 ms | 22384 KB |
test-05.txt | AC | 297 ms | 22412 KB |
test-06.txt | AC | 316 ms | 22424 KB |
test-07.txt | AC | 300 ms | 22416 KB |
test-08.txt | AC | 305 ms | 22416 KB |
test-09.txt | AC | 299 ms | 22384 KB |
test-10.txt | AC | 294 ms | 22416 KB |
test-11.txt | AC | 301 ms | 22416 KB |
test-12.txt | AC | 299 ms | 22360 KB |
test-13.txt | AC | 295 ms | 22476 KB |
test-14.txt | AC | 300 ms | 22432 KB |
test-15.txt | AC | 297 ms | 22412 KB |
test-16.txt | AC | 300 ms | 22412 KB |
test-17.txt | AC | 294 ms | 22392 KB |
test-18.txt | AC | 299 ms | 22400 KB |
test-19.txt | AC | 294 ms | 22348 KB |
test-20.txt | AC | 298 ms | 22364 KB |