結果

問題 No.178 美しいWhitespace (1)
ユーザー GrenacheGrenache
提出日時 2015-11-03 11:44:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 3,538 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 53,040 KB
最終ジャッジ日時 2024-09-13 12:02:56
合計ジャッジ時間 9,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
49,852 KB
testcase_01 AC 132 ms
49,988 KB
testcase_02 AC 134 ms
52,216 KB
testcase_03 AC 133 ms
52,140 KB
testcase_04 AC 208 ms
53,040 KB
testcase_05 AC 203 ms
50,996 KB
testcase_06 AC 206 ms
50,928 KB
testcase_07 AC 210 ms
53,004 KB
testcase_08 AC 204 ms
50,608 KB
testcase_09 AC 206 ms
52,884 KB
testcase_10 AC 204 ms
50,884 KB
testcase_11 AC 202 ms
52,996 KB
testcase_12 AC 208 ms
50,976 KB
testcase_13 AC 203 ms
50,828 KB
testcase_14 AC 203 ms
50,888 KB
testcase_15 AC 204 ms
50,988 KB
testcase_16 AC 201 ms
50,852 KB
testcase_17 AC 202 ms
50,828 KB
testcase_18 AC 200 ms
50,744 KB
testcase_19 AC 206 ms
50,860 KB
testcase_20 AC 208 ms
50,836 KB
testcase_21 AC 203 ms
51,048 KB
testcase_22 AC 195 ms
50,964 KB
testcase_23 AC 209 ms
50,972 KB
testcase_24 AC 205 ms
51,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder178 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        long[] s = new long[n];
        long max = 0;
        boolean flag = true;
        for (int i = 0; i < n; i++) {
        	int a = sc.nextInt();
        	int b = sc.nextInt();
        	s[i] = (long)a + b * 4;
        	max = Math.max(max, s[i]);
        	if (i > 0 && s[i] % 2 != s[i - 1] % 2) {
        		flag = false;
        	}
        }

        if (flag) {
        	long ret = 0;
        	for (int i = 0; i < n; i++) {
        		ret += (max - s[i]) / 2;
        	}
        	
        	System.out.println(ret);
        } else {
        	System.out.println("-1");
        }
        
        sc.close();
    }
}
0