結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | kenji_shioya |
提出日時 | 2016-06-20 22:44:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 595 bytes |
コンパイル時間 | 5,396 ms |
コンパイル使用メモリ | 84,428 KB |
実行使用メモリ | 43,660 KB |
最終ジャッジ日時 | 2024-10-11 17:59:27 |
合計ジャッジ時間 | 9,651 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
41,136 KB |
testcase_01 | AC | 124 ms
40,932 KB |
testcase_02 | AC | 115 ms
40,168 KB |
testcase_03 | AC | 116 ms
40,364 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 188 ms
43,340 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 192 ms
43,432 KB |
testcase_12 | AC | 187 ms
42,864 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 196 ms
43,232 KB |
testcase_19 | WA | - |
testcase_20 | AC | 198 ms
43,408 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 194 ms
43,056 KB |
testcase_24 | AC | 197 ms
43,240 KB |
ソースコード
import java.util.*; public class Exercise103{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] sum = new int[n]; int max = 0; for(int i = 0; i < n; i++){ int a = sc.nextInt(); int b = sc.nextInt() * 4; sum[i] = a + b; max = Math.max(max, a + b); } int answer = 0; for(int i = 0; i < n; i++){ if((max - sum[i]) % 2 == 0){ answer += (max - sum[i]) / 2; }else{ System.out.println(-1); return; } } System.out.println(answer); } }