結果

問題 No.178 美しいWhitespace (1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-12 00:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-05-01 10:22:30
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,072 KB
testcase_01 AC 129 ms
54,184 KB
testcase_02 AC 115 ms
53,012 KB
testcase_03 AC 128 ms
54,012 KB
testcase_04 AC 201 ms
56,600 KB
testcase_05 AC 204 ms
56,512 KB
testcase_06 AC 196 ms
56,652 KB
testcase_07 AC 199 ms
56,652 KB
testcase_08 AC 186 ms
56,892 KB
testcase_09 AC 205 ms
56,756 KB
testcase_10 AC 200 ms
56,532 KB
testcase_11 AC 205 ms
56,632 KB
testcase_12 AC 206 ms
56,472 KB
testcase_13 AC 205 ms
56,352 KB
testcase_14 AC 206 ms
56,628 KB
testcase_15 AC 211 ms
56,988 KB
testcase_16 AC 216 ms
56,744 KB
testcase_17 AC 215 ms
56,728 KB
testcase_18 AC 209 ms
56,776 KB
testcase_19 AC 210 ms
56,844 KB
testcase_20 AC 203 ms
56,772 KB
testcase_21 AC 205 ms
56,724 KB
testcase_22 AC 200 ms
56,944 KB
testcase_23 AC 205 ms
56,820 KB
testcase_24 AC 207 ms
56,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] width = new int[n];
		for (int i=0; i<n; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			width[i] = a + 4*b;
		}
		Arrays.sort(width);
		int max = width[n-1];
		long num = 0;
		boolean possible = true;
		for (int i=0; i<n; i++) {
			int dif = max-width[i];
			if (dif%2==0) {
				num += dif/2;
			}
			else {possible = false; break;}
		}
		
		System.out.println(possible==true?num:-1);
	}
}
0