結果

問題 No.178 美しいWhitespace (1)
ユーザー k_kadorak_kadora
提出日時 2015-05-27 15:09:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 4,265 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 43,776 KB
最終ジャッジ日時 2024-07-06 11:01:18
合計ジャッジ時間 8,926 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,188 KB
testcase_01 AC 99 ms
40,984 KB
testcase_02 AC 101 ms
41,248 KB
testcase_03 AC 100 ms
41,236 KB
testcase_04 AC 152 ms
43,676 KB
testcase_05 AC 164 ms
43,680 KB
testcase_06 AC 150 ms
43,416 KB
testcase_07 AC 161 ms
43,248 KB
testcase_08 AC 163 ms
43,508 KB
testcase_09 AC 161 ms
43,268 KB
testcase_10 AC 187 ms
42,960 KB
testcase_11 AC 166 ms
43,532 KB
testcase_12 AC 161 ms
43,352 KB
testcase_13 AC 162 ms
43,268 KB
testcase_14 AC 162 ms
43,776 KB
testcase_15 AC 166 ms
42,984 KB
testcase_16 AC 160 ms
43,272 KB
testcase_17 AC 160 ms
43,112 KB
testcase_18 AC 165 ms
43,236 KB
testcase_19 AC 161 ms
43,504 KB
testcase_20 AC 164 ms
43,324 KB
testcase_21 AC 164 ms
43,668 KB
testcase_22 AC 155 ms
43,104 KB
testcase_23 AC 163 ms
43,056 KB
testcase_24 AC 160 ms
43,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Whitespace{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		long max=0,sum=0,res = 0;
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i = 0;i<n;i++){
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
			sum = sum + (a[i] % 2);
			if(a[i] + b[i]*4 >max)max = a[i] + b[i] * 4;
		}
		if(sum == n || sum == 0){
			for(int i = 0;i<n;i++){
				res = res + (max - (a[i] + b[i] *4))/2;
			}
			System.out.println(res);
		}else{
			System.out.println(-1);
		}
	}
}
0