結果

問題 No.1120 Strange Teacher
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-10 23:48:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 286 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,276 KB
最終ジャッジ日時 2024-07-22 18:14:01
合計ジャッジ時間 3,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 33 ms
12,416 KB
testcase_04 AC 120 ms
24,376 KB
testcase_05 AC 121 ms
24,508 KB
testcase_06 AC 123 ms
25,212 KB
testcase_07 AC 118 ms
24,376 KB
testcase_08 AC 119 ms
24,504 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 85 ms
25,276 KB
testcase_11 AC 85 ms
25,148 KB
testcase_12 AC 82 ms
25,144 KB
testcase_13 AC 81 ms
24,636 KB
testcase_14 AC 81 ms
24,460 KB
testcase_15 AC 83 ms
24,508 KB
testcase_16 AC 85 ms
24,584 KB
testcase_17 AC 85 ms
24,380 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 120 ms
24,868 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 26 ms
10,624 KB
testcase_22 AC 25 ms
10,880 KB
testcase_23 AC 24 ms
10,752 KB
testcase_24 AC 113 ms
21,756 KB
testcase_25 AC 25 ms
10,752 KB
testcase_26 AC 26 ms
10,880 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:11: SyntaxWarning: invalid decimal literal
  if(b[i]+R-a[i])%2or b[i]+R<a[i]:exit(P(-1))

ソースコード

diff #

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