結果

問題 No.178 美しいWhitespace (1)
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-07 00:36:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 3,403 ms
コンパイル使用メモリ 78,888 KB
実行使用メモリ 43,508 KB
最終ジャッジ日時 2024-10-08 16:54:57
合計ジャッジ時間 8,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,160 KB
testcase_01 AC 117 ms
41,180 KB
testcase_02 AC 102 ms
41,296 KB
testcase_03 AC 122 ms
40,960 KB
testcase_04 AC 181 ms
43,440 KB
testcase_05 AC 192 ms
43,156 KB
testcase_06 AC 182 ms
43,508 KB
testcase_07 AC 185 ms
43,480 KB
testcase_08 AC 182 ms
43,448 KB
testcase_09 AC 175 ms
43,444 KB
testcase_10 AC 181 ms
43,056 KB
testcase_11 AC 183 ms
43,244 KB
testcase_12 AC 188 ms
43,436 KB
testcase_13 AC 180 ms
43,192 KB
testcase_14 AC 182 ms
43,348 KB
testcase_15 AC 189 ms
43,272 KB
testcase_16 AC 186 ms
43,160 KB
testcase_17 AC 194 ms
43,340 KB
testcase_18 AC 184 ms
43,344 KB
testcase_19 AC 192 ms
43,196 KB
testcase_20 AC 186 ms
42,964 KB
testcase_21 AC 190 ms
43,480 KB
testcase_22 AC 180 ms
43,456 KB
testcase_23 AC 182 ms
43,028 KB
testcase_24 AC 174 ms
43,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Yuki178 {
	
	public static void main(String[] args) {
	
			Scanner scan = new Scanner(System.in);
			int n = scan.nextInt();
			int a[] = new int[n];
			int b[] = new int[n];
			boolean flg = true;
			
			ArrayList<Long> array = new ArrayList<Long>();
			
			for (int i = 0; i < n ; i++ ) {
				a[i] = scan.nextInt();
				b[i] = scan.nextInt();
				
			}
			scan.close();
			
		    long ans = 0;
			for (int i = 0; i < n ; i++ ) {
				ans = a[i] + 4 * b[i];
				array.add(ans);
			}
			
			Collections.sort(array);
			long max = Collections.max(array);
			
			long big_ans = 0;
			for(long num : array){
				big_ans += ((max - num) / 2);
				if((max - num) % 2 == 1){ 
					flg = false;
				}
			}

			if (flg == true){
				System.out.println(big_ans);
			} else {
				System.out.println(-1);
			}
	}

}
0