結果

問題 No.1120 Strange Teacher
ユーザー ntudantuda
提出日時 2024-11-14 20:51:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 103,892 KB
最終ジャッジ日時 2024-11-14 20:51:56
合計ジャッジ時間 3,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,188 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 42 ms
58,696 KB
testcase_03 AC 47 ms
66,104 KB
testcase_04 AC 88 ms
103,492 KB
testcase_05 AC 86 ms
103,844 KB
testcase_06 AC 86 ms
103,620 KB
testcase_07 AC 87 ms
103,420 KB
testcase_08 AC 86 ms
103,824 KB
testcase_09 AC 38 ms
52,496 KB
testcase_10 AC 85 ms
103,560 KB
testcase_11 AC 85 ms
103,620 KB
testcase_12 AC 84 ms
103,608 KB
testcase_13 AC 84 ms
103,328 KB
testcase_14 AC 85 ms
103,564 KB
testcase_15 AC 85 ms
103,532 KB
testcase_16 AC 85 ms
103,892 KB
testcase_17 AC 85 ms
103,548 KB
testcase_18 AC 38 ms
52,548 KB
testcase_19 AC 87 ms
100,936 KB
testcase_20 AC 38 ms
51,820 KB
testcase_21 AC 38 ms
52,688 KB
testcase_22 AC 38 ms
53,780 KB
testcase_23 AC 38 ms
51,876 KB
testcase_24 AC 80 ms
101,952 KB
testcase_25 AC 38 ms
52,888 KB
testcase_26 AC 38 ms
52,752 KB
testcase_27 AC 38 ms
53,620 KB
testcase_28 AC 38 ms
53,012 KB
testcase_29 AC 38 ms
52,940 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(A[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