結果

問題 No.178 美しいWhitespace (1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 3,619 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 56,948 KB
最終ジャッジ日時 2024-11-15 22:37:22
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,804 KB
testcase_01 AC 120 ms
54,124 KB
testcase_02 AC 121 ms
53,908 KB
testcase_03 AC 120 ms
53,796 KB
testcase_04 AC 189 ms
56,716 KB
testcase_05 AC 192 ms
56,488 KB
testcase_06 AC 189 ms
56,396 KB
testcase_07 AC 193 ms
56,748 KB
testcase_08 AC 189 ms
56,384 KB
testcase_09 AC 189 ms
56,676 KB
testcase_10 AC 195 ms
56,448 KB
testcase_11 AC 199 ms
56,948 KB
testcase_12 AC 191 ms
56,200 KB
testcase_13 AC 195 ms
56,780 KB
testcase_14 AC 194 ms
56,500 KB
testcase_15 AC 196 ms
56,576 KB
testcase_16 AC 193 ms
56,596 KB
testcase_17 AC 193 ms
56,716 KB
testcase_18 AC 197 ms
56,620 KB
testcase_19 AC 199 ms
56,592 KB
testcase_20 AC 200 ms
56,808 KB
testcase_21 AC 198 ms
56,568 KB
testcase_22 AC 183 ms
56,356 KB
testcase_23 AC 190 ms
56,848 KB
testcase_24 AC 194 ms
56,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		long n = sc.nextLong(), sum = 0, max = 0, t;
		boolean a = false, b = false;
		for(int i = 0; i < n; i++){
			t = sc.nextLong() + sc.nextLong() * 4;
			if(t % 2 == 0){
				a = true;
			} else {
				b = true;
			}
			max = Math.max(max, t);
			sum += t;
		}
		if(a && b){
			System.out.println(-1);
			return;
		}
		System.out.println((max*n - sum)/2);
	}
}
0