結果

問題 No.178 美しいWhitespace (1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-12 00:04:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 43,964 KB
最終ジャッジ日時 2024-11-21 13:53:32
合計ジャッジ時間 8,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,720 KB
testcase_01 AC 127 ms
41,724 KB
testcase_02 AC 124 ms
41,472 KB
testcase_03 AC 124 ms
41,404 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 197 ms
43,576 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 198 ms
43,628 KB
testcase_12 AC 202 ms
43,500 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 196 ms
43,644 KB
testcase_19 WA -
testcase_20 AC 190 ms
43,436 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 195 ms
43,448 KB
testcase_24 AC 195 ms
43,856 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];
		int 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