結果

問題 No.1120 Strange Teacher
ユーザー ntudantuda
提出日時 2024-11-14 20:47:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 103,996 KB
最終ジャッジ日時 2024-11-14 20:47:17
合計ジャッジ時間 4,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,464 KB
testcase_01 AC 41 ms
52,792 KB
testcase_02 AC 44 ms
58,844 KB
testcase_03 AC 49 ms
64,716 KB
testcase_04 AC 88 ms
103,440 KB
testcase_05 AC 89 ms
103,944 KB
testcase_06 AC 88 ms
103,752 KB
testcase_07 AC 89 ms
103,996 KB
testcase_08 AC 88 ms
103,544 KB
testcase_09 AC 39 ms
52,640 KB
testcase_10 AC 87 ms
103,620 KB
testcase_11 AC 87 ms
103,380 KB
testcase_12 AC 87 ms
103,568 KB
testcase_13 AC 87 ms
103,424 KB
testcase_14 AC 87 ms
103,484 KB
testcase_15 AC 87 ms
103,692 KB
testcase_16 AC 89 ms
103,804 KB
testcase_17 AC 88 ms
103,692 KB
testcase_18 AC 38 ms
52,736 KB
testcase_19 AC 90 ms
100,888 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
52,680 KB
testcase_23 AC 41 ms
52,332 KB
testcase_24 AC 83 ms
101,532 KB
testcase_25 AC 38 ms
53,104 KB
testcase_26 AC 38 ms
53,252 KB
testcase_27 AC 39 ms
52,336 KB
testcase_28 AC 38 ms
53,308 KB
testcase_29 AC 40 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
for i in range(N):
    A[i] -= B[i]
suma = sum(A)
if N == 2:
    if suma != 0:
        print(-1)
    else:
        print(abs(B[i]))
    exit()
if suma % (N - 2) != 0:
    print(-1)
    exit()
tot = suma // (N-2)
if max(A) > tot:
    print(-1)
    exit()
ans = 0
for i in range(N):
    if (tot - A[i]) % 2 != 0:
        print(-1)
        exit()
print(tot)
0