結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,620 KB
testcase_01 AC 35 ms
53,024 KB
testcase_02 AC 38 ms
58,888 KB
testcase_03 AC 42 ms
64,024 KB
testcase_04 AC 79 ms
103,624 KB
testcase_05 AC 77 ms
103,320 KB
testcase_06 AC 80 ms
103,576 KB
testcase_07 AC 87 ms
103,604 KB
testcase_08 AC 79 ms
103,456 KB
testcase_09 AC 35 ms
53,088 KB
testcase_10 AC 75 ms
101,992 KB
testcase_11 AC 80 ms
101,824 KB
testcase_12 AC 76 ms
101,996 KB
testcase_13 AC 77 ms
101,508 KB
testcase_14 AC 76 ms
101,496 KB
testcase_15 AC 77 ms
101,644 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 34 ms
53,216 KB
testcase_19 AC 82 ms
101,100 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 33 ms
52,680 KB
testcase_23 AC 34 ms
53,032 KB
testcase_24 AC 73 ms
100,820 KB
testcase_25 WA -
testcase_26 AC 36 ms
52,316 KB
testcase_27 AC 35 ms
53,092 KB
testcase_28 AC 33 ms
53,956 KB
testcase_29 AC 36 ms
52,768 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:
            return abs(A[0] - B[0])
        else:
            return -1
    else:
        diff = sum_a - sum_b
        if diff % (N - 2) != 0:
            print(-1)
            return
    
        n = diff // (N - 2)
        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