結果

問題 No.178 美しいWhitespace (1)
ユーザー spacenautspacenaut
提出日時 2016-05-22 18:32:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 43,536 KB
最終ジャッジ日時 2024-10-06 20:35:55
合計ジャッジ時間 7,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,700 KB
testcase_01 AC 104 ms
39,656 KB
testcase_02 AC 104 ms
40,136 KB
testcase_03 AC 113 ms
41,008 KB
testcase_04 AC 182 ms
43,536 KB
testcase_05 AC 189 ms
42,880 KB
testcase_06 AC 168 ms
43,216 KB
testcase_07 AC 187 ms
43,212 KB
testcase_08 AC 184 ms
42,976 KB
testcase_09 AC 180 ms
43,416 KB
testcase_10 AC 196 ms
43,316 KB
testcase_11 AC 191 ms
43,012 KB
testcase_12 AC 191 ms
43,384 KB
testcase_13 AC 183 ms
43,000 KB
testcase_14 AC 182 ms
43,176 KB
testcase_15 AC 186 ms
43,108 KB
testcase_16 AC 199 ms
43,116 KB
testcase_17 AC 183 ms
43,444 KB
testcase_18 AC 185 ms
43,252 KB
testcase_19 AC 181 ms
43,444 KB
testcase_20 AC 183 ms
43,404 KB
testcase_21 AC 184 ms
43,304 KB
testcase_22 AC 181 ms
43,380 KB
testcase_23 AC 184 ms
43,080 KB
testcase_24 AC 179 ms
42,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0178{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long n = sc.nextInt();
		long sp, tb, temp;
		long cnt = 0;
		ArrayList<Long> a = new ArrayList<Long>();

		for(int i = 0; i < n; i++){
			sp = sc.nextInt();
			tb = sc.nextInt() * 4;
			a.add(sp + tb);
		}
		
		Collections.sort(a);
		Collections.reverse(a);

		for(int i = 1; i < n; i++){
			temp = a.get(0) - a.get(i);
			if(temp % 2 != 0){
				cnt = -1;
				break;
			}else{
				cnt = cnt + (temp / 2);
			}
		}
		System.out.println(cnt);
	}
}
0