結果

問題 No.178 美しいWhitespace (1)
ユーザー kou6839kou6839
提出日時 2015-04-16 01:44:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 78,992 KB
実行使用メモリ 43,984 KB
最終ジャッジ日時 2024-07-04 14:50:07
合計ジャッジ時間 7,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,360 KB
testcase_01 AC 122 ms
39,888 KB
testcase_02 AC 123 ms
41,192 KB
testcase_03 AC 112 ms
40,256 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 194 ms
43,428 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 190 ms
43,348 KB
testcase_12 AC 189 ms
43,156 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 191 ms
43,324 KB
testcase_19 WA -
testcase_20 AC 188 ms
43,588 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 189 ms
43,172 KB
testcase_24 AC 192 ms
43,428 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;
		}
		int 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