結果

問題 No.1120 Strange Teacher
ユーザー isacaisaca
提出日時 2020-07-25 11:35:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,196 KB
最終ジャッジ日時 2024-06-27 01:11:26
合計ジャッジ時間 19,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 497 ms
43,956 KB
testcase_10 AC 612 ms
59,308 KB
testcase_11 AC 614 ms
60,100 KB
testcase_12 AC 614 ms
60,164 KB
testcase_13 AC 584 ms
54,188 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 498 ms
43,908 KB
testcase_19 AC 588 ms
53,304 KB
testcase_20 AC 498 ms
44,312 KB
testcase_21 AC 500 ms
44,436 KB
testcase_22 AC 499 ms
43,796 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 508 ms
43,676 KB
testcase_26 WA -
testcase_27 AC 495 ms
44,184 KB
testcase_28 AC 499 ms
43,928 KB
testcase_29 AC 491 ms
80,196 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))
ab = list(set(ab))
x = np.gcd.reduce(ab)
if x == 1 and ab!=[1]:
    print(-1)
else:
    print(np.lcm.reduce(ab))
0