結果

問題 No.178 美しいWhitespace (1)
ユーザー htensaihtensai
提出日時 2020-05-13 11:55:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 43,320 KB
最終ジャッジ日時 2024-09-14 15:31:57
合計ジャッジ時間 7,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,808 KB
testcase_01 AC 130 ms
40,988 KB
testcase_02 AC 117 ms
39,856 KB
testcase_03 AC 117 ms
40,044 KB
testcase_04 AC 208 ms
42,980 KB
testcase_05 AC 197 ms
43,308 KB
testcase_06 AC 202 ms
42,828 KB
testcase_07 AC 208 ms
43,272 KB
testcase_08 AC 204 ms
43,056 KB
testcase_09 AC 204 ms
42,932 KB
testcase_10 AC 203 ms
43,244 KB
testcase_11 AC 206 ms
43,256 KB
testcase_12 AC 202 ms
43,284 KB
testcase_13 AC 202 ms
43,068 KB
testcase_14 AC 205 ms
43,248 KB
testcase_15 AC 206 ms
43,320 KB
testcase_16 AC 204 ms
43,024 KB
testcase_17 AC 194 ms
43,040 KB
testcase_18 AC 207 ms
42,768 KB
testcase_19 AC 206 ms
43,188 KB
testcase_20 AC 203 ms
42,932 KB
testcase_21 AC 199 ms
42,912 KB
testcase_22 AC 197 ms
42,944 KB
testcase_23 AC 207 ms
43,016 KB
testcase_24 AC 207 ms
43,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		int max = 0;
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt() + sc.nextInt() * 4;
		    max = Math.max(max, arr[i]);
		}
		long count = 0;
		for (int x : arr) {
		    if (x % 2 != max % 2) {
		        System.out.println(-1);
		        return;
		    }
		    count += (max - x) / 2;
		}
		System.out.println(count);
	}
}
0