結果

問題 No.2811 Calculation Within Sequence
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-13 11:53:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 133,756 KB
最終ジャッジ日時 2024-07-13 11:53:18
合計ジャッジ時間 9,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,124 KB
testcase_01 AC 38 ms
52,812 KB
testcase_02 AC 37 ms
52,588 KB
testcase_03 AC 160 ms
133,204 KB
testcase_04 AC 146 ms
133,560 KB
testcase_05 AC 158 ms
133,080 KB
testcase_06 AC 171 ms
133,080 KB
testcase_07 AC 154 ms
132,912 KB
testcase_08 AC 165 ms
133,272 KB
testcase_09 AC 160 ms
133,192 KB
testcase_10 AC 163 ms
133,192 KB
testcase_11 AC 154 ms
133,188 KB
testcase_12 AC 163 ms
132,948 KB
testcase_13 AC 149 ms
133,116 KB
testcase_14 AC 150 ms
133,244 KB
testcase_15 AC 157 ms
133,072 KB
testcase_16 AC 160 ms
133,444 KB
testcase_17 AC 141 ms
133,220 KB
testcase_18 AC 167 ms
132,804 KB
testcase_19 AC 163 ms
133,192 KB
testcase_20 AC 149 ms
133,476 KB
testcase_21 AC 145 ms
133,324 KB
testcase_22 AC 143 ms
133,476 KB
testcase_23 AC 146 ms
133,756 KB
testcase_24 AC 124 ms
107,252 KB
testcase_25 AC 64 ms
79,752 KB
testcase_26 AC 71 ms
84,532 KB
testcase_27 AC 122 ms
98,260 KB
testcase_28 AC 58 ms
69,636 KB
testcase_29 AC 104 ms
99,120 KB
testcase_30 AC 103 ms
98,752 KB
testcase_31 AC 115 ms
104,172 KB
testcase_32 AC 58 ms
73,596 KB
testcase_33 AC 100 ms
98,956 KB
testcase_34 AC 113 ms
101,932 KB
testcase_35 AC 73 ms
89,224 KB
testcase_36 AC 107 ms
98,236 KB
testcase_37 AC 81 ms
93,660 KB
testcase_38 AC 89 ms
98,808 KB
testcase_39 AC 85 ms
97,212 KB
testcase_40 AC 106 ms
107,488 KB
testcase_41 AC 102 ms
98,572 KB
testcase_42 AC 74 ms
88,560 KB
testcase_43 AC 89 ms
98,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a,b=map(int,input().split())
T=list(map(int,input().split()))
S=list(map(int,input().split()))
g=T[0]
for t in T:g=gcd(g,t)
print("Yes" if all([s%g==0 for s in S]) else "No")
0