結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 36 ms
12,288 KB
testcase_04 AC 122 ms
24,380 KB
testcase_05 AC 125 ms
24,380 KB
testcase_06 AC 121 ms
24,444 KB
testcase_07 AC 126 ms
24,504 KB
testcase_08 AC 125 ms
24,508 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 82 ms
25,276 KB
testcase_11 AC 84 ms
25,272 KB
testcase_12 AC 87 ms
25,352 KB
testcase_13 AC 87 ms
24,512 KB
testcase_14 AC 87 ms
24,508 KB
testcase_15 AC 88 ms
24,460 KB
testcase_16 AC 88 ms
24,460 KB
testcase_17 AC 89 ms
24,376 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 128 ms
24,864 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 125 ms
21,672 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:11: SyntaxWarning: invalid decimal literal
  if(b[i]+R-a[i])%2or b[i]+R<a[i]:exit(print(-1))

ソースコード

diff #

I,S=input,sum
n=int(I())
def L():return list(map(int,I().split()))
a,b=L(),L()
if n==2:
 if S(a)!=S(b):exit(print(-1))
 else:exit(print(abs(a[0]-b[0])))
if S(a)<S(b)or(S(a)-S(b))%(n-2):exit(print(-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(print(-1))
print(R)
0