結果

問題 No.1120 Strange Teacher
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-10 00:13:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 103,632 KB
最終ジャッジ日時 2024-08-10 00:13:10
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,272 KB
testcase_01 AC 35 ms
54,028 KB
testcase_02 AC 42 ms
60,896 KB
testcase_03 AC 43 ms
64,640 KB
testcase_04 AC 81 ms
103,324 KB
testcase_05 AC 81 ms
103,292 KB
testcase_06 AC 81 ms
103,192 KB
testcase_07 AC 83 ms
103,472 KB
testcase_08 AC 80 ms
103,352 KB
testcase_09 AC 35 ms
53,948 KB
testcase_10 AC 76 ms
102,012 KB
testcase_11 AC 75 ms
101,964 KB
testcase_12 AC 76 ms
101,588 KB
testcase_13 AC 76 ms
101,436 KB
testcase_14 AC 77 ms
101,604 KB
testcase_15 AC 74 ms
101,784 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
53,092 KB
testcase_19 AC 81 ms
101,208 KB
testcase_20 AC 36 ms
53,196 KB
testcase_21 AC 37 ms
52,356 KB
testcase_22 AC 35 ms
52,416 KB
testcase_23 AC 34 ms
53,620 KB
testcase_24 AC 75 ms
101,036 KB
testcase_25 AC 35 ms
52,708 KB
testcase_26 AC 34 ms
53,572 KB
testcase_27 AC 33 ms
52,596 KB
testcase_28 AC 34 ms
53,812 KB
testcase_29 AC 33 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1120

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

    sum_b = sum(B)
    sum_a = sum(A)

    if N == 2:
        if sum_a == sum_b:
            print(abs(A[0] - B[0]))
        else:
            print(-1)
        return
    else:
        diff = sum_a - sum_b
        if diff % (N - 2) != 0:
            print(-1)
            return
    
        n = diff // (N - 2)
        if n < 0:
            print(-1)
            return

        sum_n = 0
        for i in range(N):
            d = A[i] - B[i]
            x = n - d
            if x % 2 != 0:
                print(-1)
                return
            sum_n += x // 2

        if sum_n != n:
            print(-1)
            return
        else:
            print(n)












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