結果

問題 No.178 美しいWhitespace (1)
ユーザー spaciaspacia
提出日時 2015-12-29 17:25:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 933 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 51,576 KB
最終ジャッジ日時 2024-09-19 08:25:22
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,308 KB
testcase_01 AC 50 ms
36,320 KB
testcase_02 AC 53 ms
36,568 KB
testcase_03 AC 49 ms
36,964 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 50 ms
36,732 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 50 ms
36,324 KB
testcase_12 AC 50 ms
36,988 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
36,464 KB
testcase_19 WA -
testcase_20 AC 51 ms
37,028 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 77 ms
38,084 KB
testcase_24 AC 79 ms
38,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main178 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int[] nums = new int[n];
		String[] line = br.readLine().split(" ");
		int a = Integer.parseInt(line[0]);
		nums[0] = a + Integer.parseInt(line[1]) * 4;
		int max = nums[0];
		
		boolean isImpossible = false;
		for (int i = 1; i < n; i++) {
			line = br.readLine().split(" ");
			int a2 = Integer.parseInt(line[0]);
			if (a % 2 != a2 % 2) {
				isImpossible = true;
				break;
			}
			nums[i] = a2 + Integer.parseInt(line[1]) * 4;
			max = Math.max(max , nums[i]);
		}
		//out("max = " + max);
		int ans = 0;
		for (int m : nums) ans += (max - m);
		
		out(isImpossible ? -1 : ans / 2);
		
	}
}
0