結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,304 KB
testcase_01 AC 51 ms
36,744 KB
testcase_02 AC 50 ms
36,484 KB
testcase_03 AC 51 ms
36,776 KB
testcase_04 AC 87 ms
38,092 KB
testcase_05 AC 79 ms
38,196 KB
testcase_06 AC 87 ms
38,268 KB
testcase_07 AC 51 ms
37,004 KB
testcase_08 AC 88 ms
38,040 KB
testcase_09 AC 87 ms
38,236 KB
testcase_10 AC 86 ms
38,256 KB
testcase_11 AC 51 ms
36,316 KB
testcase_12 AC 53 ms
36,488 KB
testcase_13 AC 79 ms
38,184 KB
testcase_14 AC 85 ms
38,016 KB
testcase_15 AC 86 ms
38,080 KB
testcase_16 AC 79 ms
38,380 KB
testcase_17 AC 78 ms
37,704 KB
testcase_18 AC 51 ms
36,836 KB
testcase_19 AC 77 ms
38,128 KB
testcase_20 AC 51 ms
36,328 KB
testcase_21 AC 75 ms
38,068 KB
testcase_22 AC 79 ms
37,608 KB
testcase_23 AC 87 ms
38,248 KB
testcase_24 AC 87 ms
38,192 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);
		long ans = 0;
		for (int m : nums) ans += (max - m);
		
		out(isImpossible ? -1 : ans / 2);
		
	}
}
0