結果

問題 No.178 美しいWhitespace (1)
ユーザー kou6839kou6839
提出日時 2015-04-16 01:45:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 43,724 KB
最終ジャッジ日時 2024-07-04 14:52:02
合計ジャッジ時間 7,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,064 KB
testcase_01 AC 114 ms
40,136 KB
testcase_02 AC 115 ms
41,548 KB
testcase_03 AC 122 ms
41,100 KB
testcase_04 AC 191 ms
43,456 KB
testcase_05 AC 199 ms
43,464 KB
testcase_06 AC 193 ms
43,564 KB
testcase_07 AC 193 ms
43,296 KB
testcase_08 AC 196 ms
43,496 KB
testcase_09 AC 191 ms
43,528 KB
testcase_10 AC 189 ms
43,452 KB
testcase_11 AC 195 ms
43,312 KB
testcase_12 AC 189 ms
43,280 KB
testcase_13 AC 178 ms
43,588 KB
testcase_14 AC 180 ms
43,724 KB
testcase_15 AC 195 ms
43,316 KB
testcase_16 AC 192 ms
43,224 KB
testcase_17 AC 194 ms
43,488 KB
testcase_18 AC 183 ms
43,456 KB
testcase_19 AC 186 ms
43,652 KB
testcase_20 AC 184 ms
43,316 KB
testcase_21 AC 195 ms
43,320 KB
testcase_22 AC 188 ms
43,360 KB
testcase_23 AC 197 ms
43,240 KB
testcase_24 AC 193 ms
43,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] space = new int[n];
		int max=0;
		for(int i=0;i<n;i++){
			int a = sc.nextInt();
			int b = sc.nextInt();
			max=Math.max(max, a+b*4);
			space[i]=a+b*4;
		}
		long ans=0;
		for(int i=0;i<n;i++){
			if( (max-space[i])%2!=0){
				System.out.println(-1);
				return;
			}else{
				ans+=(max-space[i])/2;
			}
		}
		System.out.println(ans);
	}
}
0