結果

問題 No.2811 Calculation Within Sequence
ユーザー detteiuudetteiuu
提出日時 2024-07-19 21:26:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,276 KB
最終ジャッジ日時 2024-07-19 21:26:31
合計ジャッジ時間 8,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 150 ms
131,620 KB
testcase_04 AC 151 ms
131,436 KB
testcase_05 AC 165 ms
131,596 KB
testcase_06 AC 184 ms
131,608 KB
testcase_07 AC 161 ms
131,264 KB
testcase_08 AC 170 ms
131,800 KB
testcase_09 AC 178 ms
131,548 KB
testcase_10 AC 179 ms
131,648 KB
testcase_11 AC 150 ms
131,404 KB
testcase_12 AC 152 ms
131,280 KB
testcase_13 AC 149 ms
131,336 KB
testcase_14 AC 154 ms
131,388 KB
testcase_15 AC 165 ms
131,304 KB
testcase_16 AC 166 ms
131,156 KB
testcase_17 AC 143 ms
131,876 KB
testcase_18 AC 172 ms
131,132 KB
testcase_19 AC 165 ms
131,208 KB
testcase_20 AC 162 ms
131,512 KB
testcase_21 AC 156 ms
131,672 KB
testcase_22 AC 155 ms
131,676 KB
testcase_23 AC 155 ms
132,276 KB
testcase_24 AC 128 ms
107,316 KB
testcase_25 AC 69 ms
78,976 KB
testcase_26 AC 72 ms
82,560 KB
testcase_27 AC 128 ms
98,596 KB
testcase_28 AC 57 ms
68,352 KB
testcase_29 AC 103 ms
99,164 KB
testcase_30 AC 102 ms
96,840 KB
testcase_31 AC 114 ms
104,064 KB
testcase_32 AC 64 ms
72,320 KB
testcase_33 AC 102 ms
99,040 KB
testcase_34 AC 120 ms
100,440 KB
testcase_35 AC 70 ms
87,040 KB
testcase_36 AC 102 ms
98,508 KB
testcase_37 AC 89 ms
92,800 KB
testcase_38 AC 97 ms
98,948 KB
testcase_39 AC 90 ms
95,112 KB
testcase_40 AC 111 ms
107,484 KB
testcase_41 AC 107 ms
98,304 KB
testcase_42 AC 74 ms
86,784 KB
testcase_43 AC 88 ms
98,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

A, B = map(int, input().split())
T = list(map(int, input().split()))
S = list(map(int, input().split()))

GCD = T[0]
for i in range(1, A):
    GCD = gcd(GCD, T[i])

for i in range(B):
    if S[i] % GCD != 0:
        print("No")
        break
else:
    print("Yes")
0