結果

問題 No.1120 Strange Teacher
ユーザー now4estnow4est
提出日時 2020-07-23 12:52:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,304 KB
最終ジャッジ日時 2024-06-23 17:30:13
合計ジャッジ時間 17,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
44,612 KB
testcase_01 AC 473 ms
44,108 KB
testcase_02 AC 474 ms
44,608 KB
testcase_03 AC 481 ms
43,836 KB
testcase_04 AC 570 ms
46,792 KB
testcase_05 AC 519 ms
47,176 KB
testcase_06 AC 517 ms
47,036 KB
testcase_07 AC 522 ms
46,676 KB
testcase_08 AC 521 ms
46,688 KB
testcase_09 AC 482 ms
44,364 KB
testcase_10 AC 550 ms
47,304 KB
testcase_11 AC 539 ms
47,228 KB
testcase_12 AC 560 ms
46,796 KB
testcase_13 AC 557 ms
46,816 KB
testcase_14 AC 550 ms
46,788 KB
testcase_15 AC 545 ms
46,796 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 494 ms
44,232 KB
testcase_19 AC 552 ms
47,064 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 495 ms
44,352 KB
testcase_23 AC 491 ms
44,232 KB
testcase_24 AC 543 ms
46,960 KB
testcase_25 AC 486 ms
44,104 KB
testcase_26 AC 487 ms
44,352 KB
testcase_27 AC 486 ms
44,096 KB
testcase_28 AC 491 ms
44,356 KB
testcase_29 AC 484 ms
44,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
A = np.array(input().split(), dtype=np.int64)
B = np.array(input().split(), dtype=np.int64)

ans = -1
v = (A.sum() - B.sum()) / (N - 2)

if ((B - A + v) % 2 == 0).all() and ((B - A + v) / 2).sum() == v:
    ans = int(v)

print(ans)
0