結果

問題 No.1120 Strange Teacher
ユーザー ks2mks2m
提出日時 2020-07-22 21:40:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,197 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 68,260 KB
最終ジャッジ日時 2024-06-22 14:41:26
合計ジャッジ時間 7,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 48 ms
49,964 KB
testcase_10 AC 262 ms
66,448 KB
testcase_11 AC 265 ms
66,548 KB
testcase_12 AC 266 ms
66,664 KB
testcase_13 AC 250 ms
66,448 KB
testcase_14 AC 264 ms
66,464 KB
testcase_15 AC 286 ms
66,564 KB
testcase_16 AC 254 ms
66,476 KB
testcase_17 AC 260 ms
66,316 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 49 ms
50,432 KB
testcase_21 AC 48 ms
50,324 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 47 ms
50,224 KB
testcase_26 AC 46 ms
50,348 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 46 ms
49,916 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;
		}

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