結果

問題 No.178 美しいWhitespace (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 08:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 73,752 KB
実行使用メモリ 56,856 KB
最終ジャッジ日時 2024-11-25 21:53:24
合計ジャッジ時間 8,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,996 KB
testcase_01 AC 133 ms
53,648 KB
testcase_02 AC 134 ms
53,712 KB
testcase_03 AC 133 ms
53,956 KB
testcase_04 AC 207 ms
56,644 KB
testcase_05 AC 208 ms
56,724 KB
testcase_06 AC 209 ms
56,764 KB
testcase_07 AC 208 ms
56,440 KB
testcase_08 AC 204 ms
56,832 KB
testcase_09 AC 206 ms
56,540 KB
testcase_10 AC 207 ms
56,720 KB
testcase_11 AC 206 ms
56,440 KB
testcase_12 AC 206 ms
56,608 KB
testcase_13 AC 210 ms
56,720 KB
testcase_14 AC 201 ms
56,696 KB
testcase_15 AC 206 ms
56,856 KB
testcase_16 AC 208 ms
56,292 KB
testcase_17 AC 204 ms
56,696 KB
testcase_18 AC 204 ms
56,544 KB
testcase_19 AC 206 ms
56,672 KB
testcase_20 AC 206 ms
56,640 KB
testcase_21 AC 203 ms
56,428 KB
testcase_22 AC 200 ms
56,300 KB
testcase_23 AC 205 ms
56,796 KB
testcase_24 AC 206 ms
56,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] M = new int [N];
        int max = 0;
        
        for(int i=0; i<N; i++){
            int a=sc.nextInt();
            int b=sc.nextInt();
            M[i]=a+4*b;
            max=Math.max(max,M[i]);
        }
        long sum=0L;
        for(int i=0; i<N; i++){
            if( (max-M[i])%2==0 ){
                sum=sum+(long)(max-M[i])/2;
            }else{
                sum=-1L;
                break;
            }
        }
        System.out.println(sum);
    }
}
0