結果

問題 No.178 美しいWhitespace (1)
ユーザー kenkooookenkoooo
提出日時 2015-04-18 00:20:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 43,988 KB
最終ジャッジ日時 2024-07-04 15:57:58
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,304 KB
testcase_01 AC 113 ms
41,420 KB
testcase_02 AC 113 ms
40,280 KB
testcase_03 AC 124 ms
41,444 KB
testcase_04 AC 196 ms
43,596 KB
testcase_05 AC 192 ms
43,420 KB
testcase_06 AC 191 ms
43,988 KB
testcase_07 AC 180 ms
43,668 KB
testcase_08 AC 183 ms
43,448 KB
testcase_09 AC 189 ms
43,664 KB
testcase_10 AC 185 ms
43,472 KB
testcase_11 AC 194 ms
43,260 KB
testcase_12 AC 181 ms
43,488 KB
testcase_13 AC 191 ms
43,608 KB
testcase_14 AC 181 ms
43,732 KB
testcase_15 AC 189 ms
43,596 KB
testcase_16 AC 189 ms
43,504 KB
testcase_17 AC 195 ms
43,548 KB
testcase_18 AC 189 ms
43,276 KB
testcase_19 AC 186 ms
43,552 KB
testcase_20 AC 189 ms
43,696 KB
testcase_21 AC 177 ms
43,372 KB
testcase_22 AC 186 ms
43,700 KB
testcase_23 AC 175 ms
43,524 KB
testcase_24 AC 191 ms
43,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] a = new int[N];
		int[] b = new int[N];

		for (int i = 0; i < N; i++) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
		}
		sc.close();

		int max = 0;
		for (int i = 0; i < N; i++) {
			max = Math.max(a[i] + 4 * b[i], max);
		}
		long c = 0;
		for (int i = 0; i < N; i++) {
			if ((max - a[i] - 4 * b[i]) % 2 == 0) {
				c += (max - a[i] - 4 * b[i]) / 2;
			} else {
				System.out.println(-1);
				return;
			}
		}
		System.out.println(c);

	}
}
0