結果

問題 No.1120 Strange Teacher
ユーザー chineristACchineristAC
提出日時 2020-07-22 21:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 658 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 103,360 KB
最終ジャッジ日時 2024-06-22 14:03:42
合計ジャッジ時間 3,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,008 KB
testcase_01 AC 31 ms
52,348 KB
testcase_02 AC 35 ms
58,960 KB
testcase_03 AC 39 ms
64,948 KB
testcase_04 AC 77 ms
103,360 KB
testcase_05 AC 77 ms
103,148 KB
testcase_06 AC 78 ms
102,932 KB
testcase_07 AC 78 ms
103,280 KB
testcase_08 AC 78 ms
102,928 KB
testcase_09 AC 32 ms
52,748 KB
testcase_10 AC 72 ms
102,016 KB
testcase_11 AC 71 ms
101,352 KB
testcase_12 AC 75 ms
102,156 KB
testcase_13 AC 71 ms
101,688 KB
testcase_14 AC 72 ms
101,476 KB
testcase_15 AC 71 ms
101,892 KB
testcase_16 AC 75 ms
101,444 KB
testcase_17 AC 73 ms
101,280 KB
testcase_18 AC 33 ms
52,064 KB
testcase_19 AC 78 ms
101,116 KB
testcase_20 AC 31 ms
52,212 KB
testcase_21 AC 32 ms
52,636 KB
testcase_22 AC 31 ms
52,496 KB
testcase_23 AC 31 ms
53,880 KB
testcase_24 AC 73 ms
101,548 KB
testcase_25 AC 35 ms
52,700 KB
testcase_26 AC 35 ms
53,012 KB
testcase_27 AC 35 ms
53,444 KB
testcase_28 AC 33 ms
52,088 KB
testcase_29 AC 31 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
S=sum(A)-sum(B)

if N==2:
    if S==0:
        print(abs(A[0]-B[0]))
        exit()
    else:
        print(-1)
        exit()


if S%(N-2)!=0:
    print(-1)
    exit()
else:
    Q=S//(N-2)
    if Q<0:
        print(-1)
        exit()
    else:
        check=0
        for i in range(N):
            a=A[i]-Q
            b=B[i]
            if a>b or (b-a)%2==1:
                print(-1)
                exit()
            else:
                check+=(b-a)//2
        if check==Q:
            print(Q)
            exit()
        else:
            print(-1)
            exit()
0