結果

問題 No.1120 Strange Teacher
ユーザー ks2mks2m
提出日時 2020-07-22 21:40:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 77,580 KB
実行使用メモリ 66,828 KB
最終ジャッジ日時 2024-06-22 14:47:01
合計ジャッジ時間 8,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,156 KB
testcase_01 AC 47 ms
49,888 KB
testcase_02 AC 57 ms
50,420 KB
testcase_03 AC 107 ms
54,540 KB
testcase_04 AC 250 ms
66,552 KB
testcase_05 AC 268 ms
66,556 KB
testcase_06 AC 284 ms
63,756 KB
testcase_07 AC 251 ms
66,188 KB
testcase_08 AC 249 ms
66,476 KB
testcase_09 AC 46 ms
50,336 KB
testcase_10 AC 265 ms
66,444 KB
testcase_11 AC 246 ms
66,348 KB
testcase_12 AC 262 ms
66,460 KB
testcase_13 AC 256 ms
66,588 KB
testcase_14 AC 263 ms
66,400 KB
testcase_15 AC 271 ms
66,828 KB
testcase_16 AC 244 ms
66,596 KB
testcase_17 AC 257 ms
66,432 KB
testcase_18 AC 49 ms
50,500 KB
testcase_19 AC 257 ms
65,688 KB
testcase_20 AC 45 ms
50,276 KB
testcase_21 AC 46 ms
49,920 KB
testcase_22 WA -
testcase_23 AC 46 ms
50,352 KB
testcase_24 AC 257 ms
64,688 KB
testcase_25 AC 46 ms
50,276 KB
testcase_26 AC 45 ms
50,224 KB
testcase_27 AC 46 ms
49,848 KB
testcase_28 AC 46 ms
50,284 KB
testcase_29 AC 46 ms
50,264 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]) / 2;
			if (val < 0) {
				System.out.println(-1);
				return;
			}
			sum2 += val;
		}
		if (sum2 == cnt) {
			System.out.println(cnt);
		} else {
			System.out.println(-1);
		}
	}
}
0