結果

問題 No.178 美しいWhitespace (1)
ユーザー ぴろずぴろず
提出日時 2015-03-07 13:00:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 3,515 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 56,940 KB
最終ジャッジ日時 2024-06-24 15:15:34
合計ジャッジ時間 8,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,160 KB
testcase_01 AC 128 ms
54,136 KB
testcase_02 AC 130 ms
54,300 KB
testcase_03 AC 134 ms
54,288 KB
testcase_04 AC 205 ms
56,828 KB
testcase_05 AC 204 ms
56,616 KB
testcase_06 AC 202 ms
56,588 KB
testcase_07 AC 196 ms
56,548 KB
testcase_08 AC 203 ms
56,760 KB
testcase_09 AC 207 ms
56,700 KB
testcase_10 AC 206 ms
56,748 KB
testcase_11 AC 203 ms
56,664 KB
testcase_12 AC 208 ms
56,452 KB
testcase_13 AC 202 ms
56,876 KB
testcase_14 AC 201 ms
56,668 KB
testcase_15 AC 198 ms
56,624 KB
testcase_16 AC 198 ms
56,940 KB
testcase_17 AC 200 ms
56,340 KB
testcase_18 AC 201 ms
56,288 KB
testcase_19 AC 203 ms
56,548 KB
testcase_20 AC 204 ms
56,568 KB
testcase_21 AC 203 ms
56,680 KB
testcase_22 AC 198 ms
56,532 KB
testcase_23 AC 207 ms
56,648 KB
testcase_24 AC 206 ms
56,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package perfectws;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		assert 2 <= n && n <= 1000;
		long max = 0;
		long sum = 0;
		boolean odd = false;
		boolean even = false;
		for(int i=0;i<n;i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			assert 0 <= a && a <= 10000000 && 0 <= b && b <= 10000000;
			int width = a + b * 4;
			max = Math.max(max, width);
			sum += width;
			if (width % 2 == 0) {
				even = true;
			}else{
				odd = true;
			}
		}
		if (odd && even) {
			System.out.println(-1);
		}else{
			System.out.println((max * n - sum) / 2);
		}

	}
}
0