結果

問題 No.1120 Strange Teacher
ユーザー qibqib
提出日時 2023-03-05 16:57:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 1,000 ms
コード長 518 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 103,220 KB
最終ジャッジ日時 2024-09-18 01:37:10
合計ジャッジ時間 4,316 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,460 KB
testcase_01 AC 35 ms
52,620 KB
testcase_02 AC 45 ms
59,144 KB
testcase_03 AC 50 ms
65,460 KB
testcase_04 AC 86 ms
103,016 KB
testcase_05 AC 89 ms
102,936 KB
testcase_06 AC 86 ms
102,804 KB
testcase_07 AC 87 ms
102,956 KB
testcase_08 AC 87 ms
103,220 KB
testcase_09 AC 36 ms
52,880 KB
testcase_10 AC 76 ms
101,940 KB
testcase_11 AC 77 ms
101,952 KB
testcase_12 AC 75 ms
101,788 KB
testcase_13 AC 82 ms
101,596 KB
testcase_14 AC 80 ms
101,824 KB
testcase_15 AC 82 ms
101,364 KB
testcase_16 AC 75 ms
101,488 KB
testcase_17 AC 75 ms
101,624 KB
testcase_18 AC 35 ms
51,944 KB
testcase_19 AC 86 ms
100,984 KB
testcase_20 AC 36 ms
52,688 KB
testcase_21 AC 36 ms
52,308 KB
testcase_22 AC 37 ms
52,520 KB
testcase_23 AC 35 ms
53,220 KB
testcase_24 AC 81 ms
102,812 KB
testcase_25 AC 35 ms
52,288 KB
testcase_26 AC 35 ms
52,384 KB
testcase_27 AC 39 ms
52,064 KB
testcase_28 AC 38 ms
51,888 KB
testcase_29 AC 39 ms
53,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

sa = sum(a)
sb = sum(b)

if n == 2:
  if sa != sb:
    print("-1")
  else:
    print(abs(a[0] - b[0]))
  exit()

if sa - sb < 0 or (sa - sb) % (n - 2) != 0:
  print("-1")
  exit()

cnt = (sa - sb) // (n - 2)
rest = cnt
for i in range(n):
  a[i] -= cnt
  if a[i] > b[i]:
    print("-1")
    exit()
  else:
    cost = min(rest, (b[i] - a[i]) // 2)
    a[i] += 2 * cost
    rest -= cost

if a == b:
  print(cnt)
else:
  print("-1")
0