結果

問題 No.178 美しいWhitespace (1)
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 23:43:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 43,564 KB
最終ジャッジ日時 2024-07-06 04:24:36
合計ジャッジ時間 8,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,108 KB
testcase_01 AC 141 ms
41,164 KB
testcase_02 AC 138 ms
41,256 KB
testcase_03 AC 137 ms
41,440 KB
testcase_04 AC 217 ms
42,920 KB
testcase_05 AC 217 ms
43,416 KB
testcase_06 AC 219 ms
43,564 KB
testcase_07 AC 219 ms
43,292 KB
testcase_08 AC 215 ms
43,028 KB
testcase_09 AC 222 ms
43,216 KB
testcase_10 AC 222 ms
43,304 KB
testcase_11 AC 216 ms
43,232 KB
testcase_12 AC 215 ms
43,432 KB
testcase_13 AC 216 ms
43,196 KB
testcase_14 AC 213 ms
43,272 KB
testcase_15 AC 202 ms
43,256 KB
testcase_16 AC 218 ms
43,032 KB
testcase_17 AC 211 ms
43,156 KB
testcase_18 AC 209 ms
43,076 KB
testcase_19 AC 216 ms
43,124 KB
testcase_20 AC 219 ms
43,548 KB
testcase_21 AC 221 ms
43,104 KB
testcase_22 AC 211 ms
42,948 KB
testcase_23 AC 212 ms
43,356 KB
testcase_24 AC 208 ms
43,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		long[] array = new long[N];
		for(int i = 0; i < N; i++){
			final int a = sc.nextInt();
			final int b = sc.nextInt();
			
			array[i] = a + 4 * b;
		}
		
		boolean ok = true;
		final long fst_mod = array[0] % 2;
		for(int i = 1; i < N; i++){
			if(array[i] % 2 != fst_mod){
				ok = false;
				break;
			}
		}
		
		if(!ok){
			System.out.println(-1);
		}else{
			long max = 0;
			for(int i = 0; i < N; i++){
				max = Math.max(max, array[i]);
			}
			
			long count = 0;
			for(int i = 0; i < N; i++){
				count += (max - array[i]) / 2;
			}
			
			System.out.println(count);
		}
		
	}
	
}
0