結果

問題 No.178 美しいWhitespace (1)
ユーザー discoNekodiscoNeko
提出日時 2016-04-29 14:38:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 38,636 KB
最終ジャッジ日時 2024-10-04 17:43:26
合計ジャッジ時間 4,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,480 KB
testcase_01 AC 43 ms
36,552 KB
testcase_02 AC 44 ms
36,912 KB
testcase_03 AC 44 ms
37,080 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 64 ms
38,360 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 73 ms
38,072 KB
testcase_12 AC 76 ms
38,636 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 76 ms
38,368 KB
testcase_19 WA -
testcase_20 AC 75 ms
38,184 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
38,124 KB
testcase_24 AC 82 ms
38,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		int n = Integer.parseInt(br.readLine());
		int[] sum = new int[n];
		int max = 0;
		for(int i = 0; i < n; i++){
			String[] str = br.readLine().split(" ");
			sum[i] = Integer.parseInt(str[0]);
			sum[i] += 4*Integer.parseInt(str[1]);
			max = Math.max(max,sum[i]);
		}
		int cnt = 0;
		for(int i = 0; i < n; i++){
			int k = max - sum[i];
			if(k%2!=0){
				sb.append(-1);
				System.out.println(sb);
				return;
			}
			cnt += k/2;
		}
		sb.append(cnt);
		System.out.println(sb);
	}
}
0