結果

問題 No.178 美しいWhitespace (1)
ユーザー discoNekodiscoNeko
提出日時 2016-04-29 14:49:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 38,616 KB
最終ジャッジ日時 2024-10-04 17:43:45
合計ジャッジ時間 5,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,064 KB
testcase_01 AC 51 ms
36,832 KB
testcase_02 AC 51 ms
36,972 KB
testcase_03 AC 51 ms
37,080 KB
testcase_04 AC 86 ms
38,220 KB
testcase_05 AC 78 ms
38,408 KB
testcase_06 AC 87 ms
38,396 KB
testcase_07 AC 86 ms
38,128 KB
testcase_08 AC 90 ms
38,244 KB
testcase_09 AC 87 ms
38,320 KB
testcase_10 AC 76 ms
38,064 KB
testcase_11 AC 77 ms
38,280 KB
testcase_12 AC 77 ms
38,008 KB
testcase_13 AC 86 ms
38,320 KB
testcase_14 AC 78 ms
38,360 KB
testcase_15 AC 86 ms
38,460 KB
testcase_16 AC 87 ms
38,340 KB
testcase_17 AC 78 ms
38,396 KB
testcase_18 AC 78 ms
38,616 KB
testcase_19 AC 88 ms
38,360 KB
testcase_20 AC 87 ms
38,068 KB
testcase_21 AC 77 ms
38,224 KB
testcase_22 AC 79 ms
38,256 KB
testcase_23 AC 80 ms
38,100 KB
testcase_24 AC 88 ms
38,452 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());
		long[] sum = new long[n];
		long max = 0;
		for(int i = 0; i < n; i++){
			String[] str = br.readLine().split(" ");
			sum[i] = Long.parseLong(str[0]);
			sum[i] += 4*Long.parseLong(str[1]);
			max = Math.max(max,sum[i]);
		}
		long cnt = 0;
		for(int i = 0; i < n; i++){
			long 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