結果

問題 No.2811 Calculation Within Sequence
ユーザー aa
提出日時 2024-07-19 21:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 132,004 KB
最終ジャッジ日時 2024-07-19 21:36:54
合計ジャッジ時間 8,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 165 ms
131,352 KB
testcase_04 AC 177 ms
131,072 KB
testcase_05 AC 160 ms
131,240 KB
testcase_06 AC 189 ms
131,364 KB
testcase_07 AC 200 ms
130,852 KB
testcase_08 AC 169 ms
131,792 KB
testcase_09 AC 161 ms
131,484 KB
testcase_10 AC 166 ms
131,800 KB
testcase_11 AC 176 ms
131,828 KB
testcase_12 AC 159 ms
131,700 KB
testcase_13 AC 180 ms
131,060 KB
testcase_14 AC 157 ms
131,660 KB
testcase_15 AC 186 ms
130,968 KB
testcase_16 AC 163 ms
131,540 KB
testcase_17 AC 172 ms
131,428 KB
testcase_18 AC 182 ms
131,344 KB
testcase_19 AC 182 ms
131,236 KB
testcase_20 AC 197 ms
131,700 KB
testcase_21 AC 173 ms
131,312 KB
testcase_22 AC 146 ms
131,772 KB
testcase_23 AC 151 ms
132,004 KB
testcase_24 AC 126 ms
107,520 KB
testcase_25 AC 66 ms
79,360 KB
testcase_26 AC 75 ms
83,584 KB
testcase_27 AC 132 ms
98,176 KB
testcase_28 AC 58 ms
68,480 KB
testcase_29 AC 116 ms
99,072 KB
testcase_30 AC 116 ms
97,332 KB
testcase_31 AC 121 ms
104,036 KB
testcase_32 AC 58 ms
72,192 KB
testcase_33 AC 112 ms
98,560 KB
testcase_34 AC 106 ms
100,632 KB
testcase_35 AC 80 ms
87,552 KB
testcase_36 AC 114 ms
98,048 KB
testcase_37 AC 79 ms
93,184 KB
testcase_38 AC 93 ms
98,816 KB
testcase_39 AC 87 ms
96,752 KB
testcase_40 AC 113 ms
107,008 KB
testcase_41 AC 101 ms
98,080 KB
testcase_42 AC 74 ms
87,296 KB
testcase_43 AC 87 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b=map(int,input().split())
t=list(map(int,input().split()))
s=list(map(int,input().split()))
x=t[0]
y=s[0]
for i in range(1,a):
	x=math.gcd(x,t[i])
for i in range(1,b):
	y=math.gcd(y,s[i])
if y%x==0:
	print('Yes')
else:
	print('No')
0