結果

問題 No.1120 Strange Teacher
ユーザー isacaisaca
提出日時 2020-07-25 11:30:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-27 01:04:15
合計ジャッジ時間 20,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 506 ms
43,676 KB
testcase_10 AC 626 ms
53,504 KB
testcase_11 AC 634 ms
53,504 KB
testcase_12 AC 629 ms
54,012 KB
testcase_13 AC 625 ms
53,504 KB
testcase_14 AC 613 ms
54,016 KB
testcase_15 AC 608 ms
53,888 KB
testcase_16 AC 622 ms
53,772 KB
testcase_17 AC 601 ms
53,744 KB
testcase_18 AC 499 ms
44,060 KB
testcase_19 AC 594 ms
53,324 KB
testcase_20 AC 507 ms
44,060 KB
testcase_21 AC 505 ms
43,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 498 ms
43,672 KB
testcase_28 AC 507 ms
43,800 KB
testcase_29 AC 512 ms
44,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ab = []
for a,b in zip(A,B):
    ab.append(abs(a-b))

x = np.lcm.reduce(ab)
print(-1 if x not in ab else x)
0