結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | ffmm00 |
提出日時 | 2015-06-04 17:15:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 3,355 ms |
コンパイル使用メモリ | 74,148 KB |
実行使用メモリ | 58,408 KB |
最終ジャッジ日時 | 2024-07-06 14:06:52 |
合計ジャッジ時間 | 7,854 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 110 ms
40,908 KB |
testcase_02 | AC | 102 ms
39,964 KB |
testcase_03 | AC | 114 ms
41,100 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 180 ms
43,000 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 183 ms
43,096 KB |
testcase_12 | AC | 175 ms
43,072 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 176 ms
43,420 KB |
testcase_19 | WA | - |
testcase_20 | AC | 173 ms
42,932 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 179 ms
43,096 KB |
testcase_24 | WA | - |
ソースコード
import java.util.Scanner; public class N178 { public static void main(String[] args) { Scanner sca = new Scanner(System.in); int n = sca.nextInt(); int c = 0; int[] d = new int[n]; int max = 0; for (int i = 0; i < n; i++) { int a = sca.nextInt(); int b = sca.nextInt(); max = Math.max(max, a + b * 4); d[i] = a + 4 * b; } for (int i = 0; i < n - 1; i++) { if ((max - d[i]) % 2 != 0) { System.out.println(-1); return; } else c += (max - d[i]) / 2; } System.out.println(c); } }