結果

問題 No.178 美しいWhitespace (1)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 00:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 56,880 KB
最終ジャッジ日時 2024-07-04 02:23:24
合計ジャッジ時間 7,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,976 KB
testcase_01 AC 131 ms
54,136 KB
testcase_02 AC 120 ms
53,520 KB
testcase_03 AC 126 ms
54,016 KB
testcase_04 AC 193 ms
56,648 KB
testcase_05 AC 189 ms
56,552 KB
testcase_06 AC 192 ms
56,556 KB
testcase_07 AC 197 ms
56,844 KB
testcase_08 AC 198 ms
56,684 KB
testcase_09 AC 198 ms
56,620 KB
testcase_10 AC 197 ms
56,656 KB
testcase_11 AC 197 ms
56,560 KB
testcase_12 AC 188 ms
56,880 KB
testcase_13 AC 193 ms
56,480 KB
testcase_14 AC 195 ms
56,548 KB
testcase_15 AC 190 ms
56,412 KB
testcase_16 AC 201 ms
56,648 KB
testcase_17 AC 198 ms
56,752 KB
testcase_18 AC 198 ms
56,744 KB
testcase_19 AC 186 ms
56,548 KB
testcase_20 AC 199 ms
56,596 KB
testcase_21 AC 199 ms
56,608 KB
testcase_22 AC 191 ms
56,452 KB
testcase_23 AC 197 ms
56,724 KB
testcase_24 AC 198 ms
56,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]);
        }
        long 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);

    }
}
0