結果

問題 No.2811 Calculation Within Sequence
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-06-25 11:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 132,460 KB
最終ジャッジ日時 2024-07-08 12:14:05
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
131,384 KB
testcase_01 AC 133 ms
131,588 KB
testcase_02 AC 138 ms
131,732 KB
testcase_03 AC 156 ms
131,776 KB
testcase_04 AC 137 ms
131,512 KB
testcase_05 AC 147 ms
131,668 KB
testcase_06 AC 147 ms
131,508 KB
testcase_07 AC 146 ms
131,400 KB
testcase_08 AC 136 ms
131,684 KB
testcase_09 AC 137 ms
131,652 KB
testcase_10 AC 132 ms
131,556 KB
testcase_11 AC 127 ms
131,852 KB
testcase_12 AC 142 ms
131,508 KB
testcase_13 AC 149 ms
131,664 KB
testcase_14 AC 125 ms
131,532 KB
testcase_15 AC 152 ms
131,792 KB
testcase_16 AC 147 ms
131,408 KB
testcase_17 AC 130 ms
131,464 KB
testcase_18 AC 126 ms
131,804 KB
testcase_19 AC 121 ms
131,688 KB
testcase_20 AC 126 ms
132,460 KB
testcase_21 AC 106 ms
107,288 KB
testcase_22 AC 55 ms
80,568 KB
testcase_23 AC 63 ms
83,964 KB
testcase_24 AC 107 ms
98,060 KB
testcase_25 AC 50 ms
68,956 KB
testcase_26 AC 88 ms
99,044 KB
testcase_27 AC 86 ms
97,168 KB
testcase_28 AC 100 ms
104,300 KB
testcase_29 AC 49 ms
72,744 KB
testcase_30 AC 86 ms
99,504 KB
testcase_31 AC 95 ms
100,656 KB
testcase_32 AC 63 ms
88,144 KB
testcase_33 AC 92 ms
98,308 KB
testcase_34 AC 67 ms
92,972 KB
testcase_35 AC 81 ms
98,892 KB
testcase_36 AC 72 ms
97,008 KB
testcase_37 AC 91 ms
107,308 KB
testcase_38 AC 85 ms
98,272 KB
testcase_39 AC 60 ms
87,672 KB
testcase_40 AC 77 ms
98,628 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 i in t:
	g=gcd(g,i)
ans="Yes"
for i in s:
	if i%g!=0:
		ans="No"
print(ans)
0