結果

問題 No.1120 Strange Teacher
ユーザー ApassApass
提出日時 2020-07-22 22:55:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 316 ms / 1,000 ms
コード長 1,310 bytes
コンパイル時間 3,879 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 49,064 KB
最終ジャッジ日時 2024-06-22 23:58:55
合計ジャッジ時間 10,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,856 KB
testcase_01 AC 65 ms
37,584 KB
testcase_02 AC 84 ms
38,588 KB
testcase_03 AC 141 ms
41,808 KB
testcase_04 AC 313 ms
47,712 KB
testcase_05 AC 316 ms
47,272 KB
testcase_06 AC 315 ms
47,208 KB
testcase_07 AC 293 ms
47,640 KB
testcase_08 AC 290 ms
47,520 KB
testcase_09 AC 62 ms
37,812 KB
testcase_10 AC 288 ms
47,220 KB
testcase_11 AC 292 ms
47,104 KB
testcase_12 AC 299 ms
46,896 KB
testcase_13 AC 288 ms
47,260 KB
testcase_14 AC 302 ms
47,264 KB
testcase_15 AC 295 ms
47,740 KB
testcase_16 AC 291 ms
47,008 KB
testcase_17 AC 294 ms
47,344 KB
testcase_18 AC 63 ms
37,808 KB
testcase_19 AC 298 ms
49,064 KB
testcase_20 AC 51 ms
37,080 KB
testcase_21 AC 50 ms
36,768 KB
testcase_22 AC 62 ms
37,900 KB
testcase_23 AC 62 ms
37,896 KB
testcase_24 AC 288 ms
48,016 KB
testcase_25 AC 50 ms
36,736 KB
testcase_26 AC 62 ms
37,940 KB
testcase_27 AC 63 ms
37,692 KB
testcase_28 AC 62 ms
37,732 KB
testcase_29 AC 61 ms
37,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.MathContext;
import java.util.*;

public class StrangeTeacher {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static final PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        pw.println(solve());
        pw.close();
    }

    private static long solve() throws IOException {
        int N = readInt();
        long[] A = new long[N];
        for (int i = 0; i < N; i++) A[i] = readInt();
        for (int i = 0; i < N; i++) A[i] -= readInt();

        if (N == 2) {
            if (A[0] + A[1] == 0) return Math.abs(A[0]);
            else return -1;
        }

        long sum = Arrays.stream(A).sum();
        if (sum < 0 || sum % (N - 2) != 0) return -1;
        long operation = sum / (N-2);

        for (int i = 0; i < N; i++) {
            if ((operation - A[i]) % 2 != 0 || operation < A[i] ) return -1;
        }

        return operation;
    }
}
0