結果

問題 No.1120 Strange Teacher
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-10 23:44:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 320 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,400 KB
最終ジャッジ日時 2024-07-22 18:13:37
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 40 ms
12,416 KB
testcase_04 AC 133 ms
24,460 KB
testcase_05 AC 134 ms
24,636 KB
testcase_06 AC 132 ms
25,380 KB
testcase_07 AC 131 ms
24,460 KB
testcase_08 AC 132 ms
24,460 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 92 ms
25,360 KB
testcase_11 AC 93 ms
25,400 KB
testcase_12 AC 93 ms
25,356 KB
testcase_13 AC 92 ms
24,464 KB
testcase_14 AC 93 ms
24,372 KB
testcase_15 AC 92 ms
24,628 KB
testcase_16 AC 96 ms
24,460 KB
testcase_17 AC 96 ms
24,504 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 139 ms
24,740 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 129 ms
21,792 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,880 KB
testcase_29 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:10: SyntaxWarning: invalid decimal literal
  if (b[i]+R-a[i])%2or b[i]+R<a[i]:exit(print(-1))

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
if n==2:
 if sum(a)!=sum(b):exit(print(-1))
 else:exit(print(abs(a[0]-b[0])))
if sum(a)<sum(b)or(sum(a)-sum(b))%(n-2)!=0:exit(print(-1))
R=(sum(a)-sum(b))//(n-2)
for i in range(n):
 if (b[i]+R-a[i])%2or b[i]+R<a[i]:exit(print(-1))
print(R)
0