結果

問題 No.1120 Strange Teacher
ユーザー tcltktcltk
提出日時 2021-11-20 03:47:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 831 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 117,756 KB
最終ジャッジ日時 2024-06-10 17:19:44
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
86,728 KB
testcase_01 AC 107 ms
86,424 KB
testcase_02 AC 112 ms
87,260 KB
testcase_03 AC 119 ms
89,568 KB
testcase_04 AC 151 ms
117,468 KB
testcase_05 AC 153 ms
117,636 KB
testcase_06 AC 155 ms
117,508 KB
testcase_07 AC 165 ms
117,512 KB
testcase_08 AC 159 ms
116,948 KB
testcase_09 AC 115 ms
86,328 KB
testcase_10 AC 143 ms
117,132 KB
testcase_11 AC 146 ms
117,184 KB
testcase_12 AC 156 ms
117,536 KB
testcase_13 AC 150 ms
116,816 KB
testcase_14 AC 154 ms
117,168 KB
testcase_15 AC 155 ms
117,192 KB
testcase_16 AC 153 ms
117,132 KB
testcase_17 AC 158 ms
117,196 KB
testcase_18 AC 123 ms
86,668 KB
testcase_19 AC 168 ms
117,756 KB
testcase_20 AC 117 ms
86,600 KB
testcase_21 AC 125 ms
86,648 KB
testcase_22 AC 112 ms
86,800 KB
testcase_23 AC 110 ms
86,588 KB
testcase_24 AC 148 ms
116,588 KB
testcase_25 AC 115 ms
86,752 KB
testcase_26 AC 116 ms
86,824 KB
testcase_27 AC 113 ms
86,716 KB
testcase_28 AC 117 ms
86,700 KB
testcase_29 AC 120 ms
86,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

def solve(N, A, B):
    D = [A[i]-B[i] for i in range(N)]
    s = sum(D)
    
    if N == 2:
        if s != 0:
            return -1
        return abs(D[0])

    else:
        if s % (N-2) != 0:
            return -1
        
        n = s // (N-2)
        for d in D:
            d1 = d - n
            if not (d1 % 2 == 0 and d1 <= 0):
                return -1
        return n




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

print(solve(N, A, B))

0