結果

問題 No.178 美しいWhitespace (1)
ユーザー YamaKasaYamaKasa
提出日時 2018-05-18 15:06:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 44,072 KB
最終ジャッジ日時 2024-06-28 13:44:04
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,908 KB
testcase_01 AC 120 ms
39,688 KB
testcase_02 AC 139 ms
41,524 KB
testcase_03 AC 134 ms
41,384 KB
testcase_04 AC 209 ms
43,508 KB
testcase_05 AC 210 ms
43,028 KB
testcase_06 AC 210 ms
43,204 KB
testcase_07 AC 221 ms
43,368 KB
testcase_08 AC 209 ms
43,228 KB
testcase_09 AC 208 ms
43,524 KB
testcase_10 AC 211 ms
43,600 KB
testcase_11 AC 222 ms
43,760 KB
testcase_12 AC 226 ms
44,068 KB
testcase_13 AC 211 ms
42,988 KB
testcase_14 AC 209 ms
43,576 KB
testcase_15 AC 210 ms
42,984 KB
testcase_16 AC 209 ms
43,452 KB
testcase_17 AC 208 ms
43,084 KB
testcase_18 AC 220 ms
43,656 KB
testcase_19 AC 209 ms
43,820 KB
testcase_20 AC 219 ms
43,548 KB
testcase_21 AC 209 ms
43,568 KB
testcase_22 AC 200 ms
43,156 KB
testcase_23 AC 215 ms
43,696 KB
testcase_24 AC 224 ms
44,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []l = new int[N];
		for(int i = 0; i < N; i++) {
			int a = scan.nextInt();
			int b = scan.nextInt();
			l[i] = a + 4 * b;
		}
		scan.close();
		Arrays.sort(l);
		int max = l[N - 1];
		long c = 0;
		for(int i = 0; i < N - 1; i++) {
			if((max - l[i]) % 2 == 1) {
				System.out.println(-1);
				System.exit(0);
			}else {
				c += (max - l[i]) / 2;
			}
		}
		System.out.println(c);
	}
}
0