結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,392 KB
testcase_01 AC 130 ms
54,036 KB
testcase_02 AC 127 ms
54,200 KB
testcase_03 AC 115 ms
53,184 KB
testcase_04 AC 192 ms
56,788 KB
testcase_05 AC 188 ms
56,824 KB
testcase_06 AC 189 ms
56,696 KB
testcase_07 AC 199 ms
56,768 KB
testcase_08 AC 199 ms
56,728 KB
testcase_09 AC 195 ms
56,860 KB
testcase_10 AC 195 ms
56,688 KB
testcase_11 AC 195 ms
56,512 KB
testcase_12 AC 187 ms
56,240 KB
testcase_13 AC 196 ms
56,760 KB
testcase_14 AC 194 ms
56,956 KB
testcase_15 AC 184 ms
56,944 KB
testcase_16 AC 194 ms
56,584 KB
testcase_17 AC 200 ms
56,872 KB
testcase_18 AC 199 ms
56,868 KB
testcase_19 AC 190 ms
56,960 KB
testcase_20 AC 186 ms
56,632 KB
testcase_21 AC 204 ms
56,560 KB
testcase_22 AC 194 ms
56,632 KB
testcase_23 AC 202 ms
56,724 KB
testcase_24 AC 187 ms
56,812 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