結果

問題 No.178 美しいWhitespace (1)
ユーザー ffmm00ffmm00
提出日時 2015-06-04 17:18:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 3,159 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 43,924 KB
最終ジャッジ日時 2024-07-06 14:07:01
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,752 KB
testcase_01 AC 113 ms
40,836 KB
testcase_02 AC 108 ms
40,944 KB
testcase_03 AC 112 ms
41,304 KB
testcase_04 AC 175 ms
43,156 KB
testcase_05 AC 180 ms
42,944 KB
testcase_06 AC 177 ms
42,912 KB
testcase_07 AC 171 ms
42,884 KB
testcase_08 AC 173 ms
43,036 KB
testcase_09 AC 190 ms
43,388 KB
testcase_10 AC 182 ms
43,924 KB
testcase_11 AC 179 ms
43,356 KB
testcase_12 AC 174 ms
42,956 KB
testcase_13 AC 174 ms
43,040 KB
testcase_14 AC 176 ms
43,024 KB
testcase_15 AC 172 ms
43,480 KB
testcase_16 AC 181 ms
43,272 KB
testcase_17 AC 174 ms
43,184 KB
testcase_18 AC 178 ms
43,816 KB
testcase_19 AC 175 ms
43,192 KB
testcase_20 AC 177 ms
43,160 KB
testcase_21 AC 175 ms
43,400 KB
testcase_22 AC 178 ms
43,404 KB
testcase_23 AC 175 ms
43,360 KB
testcase_24 AC 180 ms
43,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N178 {

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

		int n = sca.nextInt();
		long c = 0;
		int[] d = new int[n];
		int max = 0;

		for (int i = 0; i < n; i++) {
			int a = sca.nextInt();
			int b = sca.nextInt();
			max = Math.max(max, a + b * 4);
			d[i] = a + 4 * b;
		}

		for (int i = 0; i < n ; i++) {
			if ((max - d[i]) % 2 != 0) {
				System.out.println(-1);
				return;
			} else
				c += (max - d[i]) / 2;
		}

		System.out.println(c);

	}

}
0