結果

問題 No.1120 Strange Teacher
ユーザー tamatotamato
提出日時 2020-07-26 20:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 1,025 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,372 KB
最終ジャッジ日時 2024-06-28 19:22:09
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 32 ms
52,736 KB
testcase_02 AC 37 ms
59,392 KB
testcase_03 AC 42 ms
63,616 KB
testcase_04 AC 76 ms
102,272 KB
testcase_05 AC 75 ms
102,212 KB
testcase_06 AC 74 ms
102,272 KB
testcase_07 AC 75 ms
101,964 KB
testcase_08 AC 73 ms
102,372 KB
testcase_09 AC 32 ms
52,608 KB
testcase_10 AC 69 ms
100,352 KB
testcase_11 AC 68 ms
100,864 KB
testcase_12 AC 69 ms
100,736 KB
testcase_13 AC 70 ms
100,736 KB
testcase_14 AC 67 ms
100,608 KB
testcase_15 AC 69 ms
100,304 KB
testcase_16 AC 69 ms
100,592 KB
testcase_17 AC 68 ms
100,352 KB
testcase_18 AC 31 ms
51,968 KB
testcase_19 AC 73 ms
99,584 KB
testcase_20 AC 33 ms
52,352 KB
testcase_21 AC 32 ms
52,352 KB
testcase_22 AC 33 ms
52,480 KB
testcase_23 AC 31 ms
52,224 KB
testcase_24 AC 70 ms
100,608 KB
testcase_25 AC 34 ms
52,096 KB
testcase_26 AC 32 ms
52,352 KB
testcase_27 AC 33 ms
52,736 KB
testcase_28 AC 32 ms
52,096 KB
testcase_29 AC 32 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    if N == 2:
        if sum(A) != sum(B):
            print(-1)
        else:
            print(abs(A[0] - B[0]))
        exit()

    if A == B:
        print(0)
        exit()

    SA = sum(A)
    SB = sum(B)
    if SA <= SB:
        print(-1)
    else:
        if (SA - SB) % (N-2):
            print(-1)
        else:
            cnt = 0
            ok = 1
            k = (SA - SB) // (N-2)
            for a, b in zip(A, B):
                if a - k > b:
                    ok = 0
                    break
                else:
                    if (b - (a-k)) % 2 != 0:
                        ok = 0
                        break
                    cnt += (b - (a-k)) // 2
            if ok == 0 or cnt != k:
                print(-1)
            else:
                print(k)


if __name__ == '__main__':
    main()
0