結果

問題 No.178 美しいWhitespace (1)
ユーザー k_kadorak_kadora
提出日時 2015-05-27 15:06:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 58,544 KB
最終ジャッジ日時 2024-07-06 10:59:10
合計ジャッジ時間 7,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
53,012 KB
testcase_01 AC 95 ms
53,036 KB
testcase_02 AC 104 ms
53,760 KB
testcase_03 AC 106 ms
53,896 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 163 ms
56,448 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 170 ms
56,528 KB
testcase_12 AC 169 ms
56,624 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 168 ms
56,504 KB
testcase_19 WA -
testcase_20 AC 166 ms
56,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 165 ms
56,476 KB
testcase_24 AC 163 ms
56,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Whitespace{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,max=0,sum=0,res = 0;
		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