結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | kenkoooo |
提出日時 | 2015-04-18 00:09:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 2,263 ms |
コンパイル使用メモリ | 74,644 KB |
実行使用メモリ | 58,876 KB |
最終ジャッジ日時 | 2024-07-04 15:57:36 |
合計ジャッジ時間 | 8,163 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
40,988 KB |
testcase_01 | AC | 131 ms
41,108 KB |
testcase_02 | AC | 132 ms
40,800 KB |
testcase_03 | AC | 135 ms
41,168 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 208 ms
43,448 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 208 ms
43,348 KB |
testcase_12 | AC | 205 ms
43,400 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 207 ms
43,280 KB |
testcase_19 | WA | - |
testcase_20 | AC | 209 ms
43,340 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 208 ms
42,936 KB |
testcase_24 | AC | 204 ms
43,084 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] a = new int[N]; int[] b = new int[N]; for (int i = 0; i < N; i++) { a[i] = sc.nextInt(); b[i] = sc.nextInt(); } sc.close(); int max = 0; for (int i = 0; i < N; i++) { max = Math.max(a[i] + 4 * b[i], max); } int c = 0; for (int i = 0; i < N; i++) { if ((max - a[i] - 4 * b[i]) % 2 == 0) { c += (max - a[i] - 4 * b[i]) / 2; } else { System.out.println(-1); return; } } System.out.println(c); } }