結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | YamaKasa |
提出日時 | 2018-05-18 15:04:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 2,014 ms |
コンパイル使用メモリ | 74,716 KB |
実行使用メモリ | 58,732 KB |
最終ジャッジ日時 | 2024-06-28 13:43:53 |
合計ジャッジ時間 | 8,069 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
40,976 KB |
testcase_01 | AC | 135 ms
41,284 KB |
testcase_02 | AC | 139 ms
41,460 KB |
testcase_03 | AC | 135 ms
41,184 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 218 ms
43,784 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 216 ms
43,144 KB |
testcase_12 | AC | 217 ms
43,900 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 208 ms
43,804 KB |
testcase_19 | WA | - |
testcase_20 | AC | 213 ms
43,424 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 205 ms
43,344 KB |
testcase_24 | AC | 215 ms
43,856 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int []l = new int[N]; for(int i = 0; i < N; i++) { int a = scan.nextInt(); int b = scan.nextInt(); l[i] = a + 4 * b; } scan.close(); Arrays.sort(l); int max = l[N - 1]; int c = 0; for(int i = 0; i < N - 1; i++) { if((max - l[i]) % 2 == 1) { System.out.println(-1); System.exit(0); }else { c += (max - l[i]) / 2; } } System.out.println(c); } }