結果

問題 No.1120 Strange Teacher
ユーザー ks2mks2m
提出日時 2020-07-22 21:50:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 1,180 bytes
コンパイル時間 2,564 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 66,664 KB
最終ジャッジ日時 2024-06-22 15:41:01
合計ジャッジ時間 7,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,396 KB
testcase_01 AC 50 ms
50,380 KB
testcase_02 AC 56 ms
50,396 KB
testcase_03 AC 107 ms
54,188 KB
testcase_04 AC 263 ms
66,532 KB
testcase_05 AC 249 ms
66,492 KB
testcase_06 AC 266 ms
63,832 KB
testcase_07 AC 270 ms
66,488 KB
testcase_08 AC 261 ms
66,664 KB
testcase_09 AC 49 ms
50,040 KB
testcase_10 AC 283 ms
66,512 KB
testcase_11 AC 254 ms
66,492 KB
testcase_12 AC 254 ms
66,480 KB
testcase_13 AC 294 ms
66,660 KB
testcase_14 AC 262 ms
66,612 KB
testcase_15 AC 253 ms
66,496 KB
testcase_16 AC 256 ms
66,328 KB
testcase_17 AC 259 ms
66,456 KB
testcase_18 AC 51 ms
50,320 KB
testcase_19 AC 274 ms
65,848 KB
testcase_20 AC 51 ms
50,032 KB
testcase_21 AC 49 ms
50,288 KB
testcase_22 AC 49 ms
49,948 KB
testcase_23 AC 50 ms
50,172 KB
testcase_24 AC 261 ms
64,488 KB
testcase_25 AC 50 ms
49,904 KB
testcase_26 AC 50 ms
50,392 KB
testcase_27 AC 50 ms
49,836 KB
testcase_28 AC 48 ms
49,940 KB
testcase_29 AC 47 ms
49,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long sum = 0;
		int[] d = new int[n];
		for (int i = 0; i < n; i++) {
			d[i] = a[i] - b[i];
			sum += d[i];
		}
		if (n == 2) {
			if (sum == 0) {
				System.out.println(Math.abs(d[0]));
			} else {
				System.out.println(-1);
			}
			return;
		}
		if (sum < 0 || sum % (n - 2) != 0) {
			System.out.println(-1);
			return;
		}

		long cnt = sum / (n - 2);
		long sum2 = 0;
		for (int i = 0; i < n; i++) {
			long val = (cnt - d[i]);
			if (val < 0 || val % 2 != 0) {
				System.out.println(-1);
				return;
			}
			sum2 += val / 2;
		}
		if (sum2 == cnt) {
			System.out.println(cnt);
		} else {
			System.out.println(-1);
		}
	}
}
0