結果

問題 No.178 美しいWhitespace (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 08:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 44,216 KB
最終ジャッジ日時 2024-05-04 11:22:20
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,456 KB
testcase_01 AC 113 ms
41,360 KB
testcase_02 AC 110 ms
41,548 KB
testcase_03 AC 104 ms
41,616 KB
testcase_04 AC 179 ms
44,216 KB
testcase_05 AC 174 ms
43,976 KB
testcase_06 AC 185 ms
43,640 KB
testcase_07 AC 177 ms
43,736 KB
testcase_08 AC 164 ms
43,696 KB
testcase_09 AC 173 ms
43,588 KB
testcase_10 AC 181 ms
43,912 KB
testcase_11 AC 167 ms
43,732 KB
testcase_12 AC 173 ms
43,876 KB
testcase_13 AC 165 ms
43,404 KB
testcase_14 AC 173 ms
43,336 KB
testcase_15 AC 174 ms
43,976 KB
testcase_16 AC 183 ms
43,768 KB
testcase_17 AC 176 ms
43,724 KB
testcase_18 AC 177 ms
43,596 KB
testcase_19 AC 172 ms
43,752 KB
testcase_20 AC 170 ms
43,780 KB
testcase_21 AC 185 ms
43,180 KB
testcase_22 AC 166 ms
43,640 KB
testcase_23 AC 186 ms
43,548 KB
testcase_24 AC 179 ms
43,772 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