結果

問題 No.1120 Strange Teacher
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:40:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 104,036 KB
最終ジャッジ日時 2024-05-08 06:07:53
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 37 ms
58,112 KB
testcase_03 AC 42 ms
64,640 KB
testcase_04 AC 84 ms
102,912 KB
testcase_05 AC 84 ms
102,784 KB
testcase_06 AC 87 ms
104,036 KB
testcase_07 AC 87 ms
103,452 KB
testcase_08 AC 90 ms
103,168 KB
testcase_09 AC 35 ms
52,352 KB
testcase_10 AC 77 ms
102,016 KB
testcase_11 AC 77 ms
101,936 KB
testcase_12 AC 80 ms
101,504 KB
testcase_13 AC 79 ms
101,376 KB
testcase_14 AC 77 ms
101,760 KB
testcase_15 AC 76 ms
101,364 KB
testcase_16 AC 83 ms
103,500 KB
testcase_17 AC 81 ms
103,168 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 83 ms
100,992 KB
testcase_20 AC 35 ms
51,584 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 35 ms
51,456 KB
testcase_23 AC 34 ms
51,840 KB
testcase_24 AC 84 ms
103,484 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 34 ms
51,840 KB
testcase_28 AC 33 ms
52,196 KB
testcase_29 AC 33 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
tota = sum(A)
totb = sum(B)
if n == 2:
    if tota == totb:
        print(abs(A[0] - B[0]))
    else:
        print(-1)
    exit()
d = tota - totb
if d < 0:
    print(-1)
    exit()
if d % (n - 2) != 0:
    print(-1)
    exit()
cnt = d // (n - 2)
A = [a - cnt for a in A]
if any(a > b for a, b in zip(A, B)):
    print(-1)
else:
    print(cnt)
0