結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | chiho_miyako |
提出日時 | 2015-04-06 00:17:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 805 bytes |
コンパイル時間 | 3,228 ms |
コンパイル使用メモリ | 74,388 KB |
実行使用メモリ | 58,672 KB |
最終ジャッジ日時 | 2024-07-04 02:21:34 |
合計ジャッジ時間 | 8,815 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
53,852 KB |
testcase_01 | AC | 124 ms
54,172 KB |
testcase_02 | AC | 117 ms
53,868 KB |
testcase_03 | AC | 130 ms
53,892 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 193 ms
56,480 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 189 ms
56,460 KB |
testcase_12 | AC | 199 ms
56,412 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 187 ms
56,692 KB |
testcase_19 | WA | - |
testcase_20 | AC | 198 ms
56,404 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 177 ms
56,700 KB |
testcase_24 | AC | 197 ms
56,472 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner (System.in); int n = koko.nextInt(); int[] a = new int[n]; int[] b = new int[n]; for(int i =0; i<n; i++){ a[i] = koko.nextInt(); b[i] = koko.nextInt(); } int max=0; int[] white = new int[n]; for(int i =0; i<n; i++){ white[i] = a[i]+4*b[i]; max = Math.max(max,white[i]); } int need=0; for(int i=0; i<n; i++){ if((max-white[i])%2==0){ need = need + (max-white[i])/2; }else{ need = -1; break; } } System.out.println(need); } }