結果

問題 No.1120 Strange Teacher
ユーザー roarisroaris
提出日時 2020-07-24 21:35:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 102,836 KB
最終ジャッジ日時 2024-06-25 20:44:08
合計ジャッジ時間 3,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,020 KB
testcase_01 AC 37 ms
52,840 KB
testcase_02 AC 47 ms
59,704 KB
testcase_03 AC 53 ms
66,364 KB
testcase_04 AC 89 ms
102,616 KB
testcase_05 AC 94 ms
102,720 KB
testcase_06 AC 89 ms
102,760 KB
testcase_07 AC 89 ms
102,708 KB
testcase_08 AC 89 ms
102,816 KB
testcase_09 AC 38 ms
53,328 KB
testcase_10 AC 79 ms
101,636 KB
testcase_11 AC 79 ms
101,292 KB
testcase_12 AC 78 ms
101,508 KB
testcase_13 AC 87 ms
102,836 KB
testcase_14 AC 88 ms
102,716 KB
testcase_15 AC 87 ms
102,800 KB
testcase_16 AC 87 ms
102,596 KB
testcase_17 AC 88 ms
102,708 KB
testcase_18 AC 39 ms
53,932 KB
testcase_19 AC 92 ms
99,408 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
53,148 KB
testcase_23 AC 37 ms
53,340 KB
testcase_24 AC 86 ms
102,548 KB
testcase_25 AC 38 ms
52,792 KB
testcase_26 AC 38 ms
52,740 KB
testcase_27 AC 38 ms
53,480 KB
testcase_28 AC 38 ms
52,288 KB
testcase_29 AC 37 ms
53,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [B[i]-A[i] for i in range(N)]

if N==2:
    if C[0]!=C[1]:
        print(-1)
    else:
        print(abs(C[0]))
    exit()
    
D = []

for i in range(1, N):
    if (C[0]-C[i])%2==1:
        print(-1)
        exit()
    
    D.append((C[0]-C[i])//2)

S = sum(D)

if (S-C[0])%(N-2)!=0:
    print(-1)
    exit()

x = (S-C[0])//(N-2)

if x<0:
    print(-1)
    exit()
    
ans = x

for Di in D:
    if x-Di<0:
        print(-1)
        exit()
        
    ans += x-Di

print(ans)
0