結果

問題 No.2811 Calculation Within Sequence
ユーザー だれだれ
提出日時 2024-07-19 21:22:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,220 KB
最終ジャッジ日時 2024-07-19 21:23:00
合計ジャッジ時間 8,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 212 ms
43,184 KB
testcase_04 AC 199 ms
43,136 KB
testcase_05 AC 235 ms
40,872 KB
testcase_06 AC 216 ms
40,828 KB
testcase_07 AC 206 ms
43,096 KB
testcase_08 AC 248 ms
41,168 KB
testcase_09 AC 241 ms
41,176 KB
testcase_10 AC 231 ms
41,252 KB
testcase_11 AC 196 ms
43,092 KB
testcase_12 AC 199 ms
40,952 KB
testcase_13 AC 254 ms
40,924 KB
testcase_14 AC 204 ms
43,136 KB
testcase_15 AC 192 ms
43,032 KB
testcase_16 AC 192 ms
41,740 KB
testcase_17 AC 225 ms
40,940 KB
testcase_18 AC 215 ms
43,220 KB
testcase_19 AC 195 ms
43,180 KB
testcase_20 AC 193 ms
41,236 KB
testcase_21 AC 222 ms
40,940 KB
testcase_22 AC 222 ms
40,940 KB
testcase_23 AC 220 ms
41,132 KB
testcase_24 AC 148 ms
31,948 KB
testcase_25 AC 72 ms
18,860 KB
testcase_26 AC 64 ms
18,680 KB
testcase_27 AC 125 ms
30,016 KB
testcase_28 AC 44 ms
14,436 KB
testcase_29 AC 110 ms
24,040 KB
testcase_30 AC 100 ms
30,900 KB
testcase_31 AC 126 ms
30,716 KB
testcase_32 AC 53 ms
15,796 KB
testcase_33 AC 98 ms
27,096 KB
testcase_34 AC 141 ms
33,268 KB
testcase_35 AC 70 ms
20,972 KB
testcase_36 AC 106 ms
25,820 KB
testcase_37 AC 111 ms
20,860 KB
testcase_38 AC 79 ms
26,180 KB
testcase_39 AC 108 ms
24,252 KB
testcase_40 AC 134 ms
31,796 KB
testcase_41 AC 146 ms
28,996 KB
testcase_42 AC 82 ms
21,848 KB
testcase_43 AC 100 ms
26,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
g = 0
for i in range(n):
    g = gcd(g, a[i])
for j in range(m):
    if b[j] % g != 0:
        print("No")
        exit()
print("Yes")
0