結果

問題 No.178 美しいWhitespace (1)
ユーザー mits58mits58
提出日時 2016-07-02 15:19:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 43,516 KB
最終ジャッジ日時 2024-10-12 00:53:31
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,140 KB
testcase_01 AC 134 ms
41,000 KB
testcase_02 AC 137 ms
40,940 KB
testcase_03 AC 136 ms
41,088 KB
testcase_04 AC 212 ms
42,904 KB
testcase_05 AC 209 ms
43,252 KB
testcase_06 AC 210 ms
42,856 KB
testcase_07 AC 214 ms
43,328 KB
testcase_08 AC 207 ms
43,000 KB
testcase_09 AC 206 ms
42,736 KB
testcase_10 AC 208 ms
43,444 KB
testcase_11 AC 213 ms
43,096 KB
testcase_12 AC 196 ms
43,148 KB
testcase_13 AC 213 ms
43,332 KB
testcase_14 AC 210 ms
43,188 KB
testcase_15 AC 214 ms
43,148 KB
testcase_16 AC 214 ms
43,144 KB
testcase_17 AC 207 ms
43,516 KB
testcase_18 AC 203 ms
43,112 KB
testcase_19 AC 208 ms
43,176 KB
testcase_20 AC 212 ms
42,804 KB
testcase_21 AC 208 ms
43,136 KB
testcase_22 AC 199 ms
43,004 KB
testcase_23 AC 207 ms
43,228 KB
testcase_24 AC 215 ms
43,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			long[] c=new long[n];
			long max=0;
			for(int i=0;i<n;i++){
				c[i]=sc.nextInt()+sc.nextInt()*4;
				max=Math.max(c[i],max);
			}
			long ans=0;
			for(int i=0;i<n;i++){
				if(ans==-1) break;
				if((max-c[i])%2==1) ans=-1;
				else ans+=(max-c[i])/2;
			}
			System.out.println(ans);
		}
	}
}
0