結果

問題 No.2811 Calculation Within Sequence
ユーザー Meso MesoMeso Meso
提出日時 2024-08-19 09:26:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-08-19 09:26:47
合計ジャッジ時間 11,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 219 ms
43,188 KB
testcase_04 AC 191 ms
43,140 KB
testcase_05 AC 228 ms
41,084 KB
testcase_06 AC 213 ms
40,960 KB
testcase_07 AC 193 ms
43,104 KB
testcase_08 AC 218 ms
41,304 KB
testcase_09 AC 219 ms
41,432 KB
testcase_10 AC 225 ms
41,260 KB
testcase_11 AC 194 ms
43,224 KB
testcase_12 AC 195 ms
41,084 KB
testcase_13 AC 226 ms
40,928 KB
testcase_14 AC 200 ms
43,136 KB
testcase_15 AC 196 ms
43,160 KB
testcase_16 AC 200 ms
41,748 KB
testcase_17 AC 224 ms
40,944 KB
testcase_18 AC 197 ms
43,176 KB
testcase_19 AC 195 ms
43,264 KB
testcase_20 AC 193 ms
41,336 KB
testcase_21 AC 223 ms
40,944 KB
testcase_22 AC 221 ms
40,944 KB
testcase_23 AC 225 ms
41,132 KB
testcase_24 AC 141 ms
32,080 KB
testcase_25 AC 70 ms
18,988 KB
testcase_26 AC 63 ms
18,688 KB
testcase_27 AC 135 ms
30,140 KB
testcase_28 AC 48 ms
14,568 KB
testcase_29 AC 111 ms
24,168 KB
testcase_30 AC 102 ms
30,908 KB
testcase_31 AC 125 ms
30,856 KB
testcase_32 AC 55 ms
15,928 KB
testcase_33 AC 97 ms
27,108 KB
testcase_34 AC 134 ms
33,400 KB
testcase_35 AC 72 ms
20,968 KB
testcase_36 AC 105 ms
25,948 KB
testcase_37 AC 92 ms
20,988 KB
testcase_38 AC 80 ms
26,308 KB
testcase_39 AC 99 ms
24,384 KB
testcase_40 AC 132 ms
31,804 KB
testcase_41 AC 147 ms
29,228 KB
testcase_42 AC 81 ms
22,108 KB
testcase_43 AC 102 ms
26,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a, b = map(int, input().split())
t = list(map(int, input().split()))
s = list(map(int, input().split()))

g = 0
for i in t:
    g = math.gcd(g, i)

for i in range(b):
    if s[i] % g != 0:
        print("No")
        break
else:
    print("Yes")
0