結果

問題 No.2811 Calculation Within Sequence
ユーザー vwxyzvwxyz
提出日時 2024-07-19 22:20:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,156 KB
最終ジャッジ日時 2024-07-19 22:20:49
合計ジャッジ時間 9,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 246 ms
28,908 KB
testcase_04 AC 256 ms
27,144 KB
testcase_05 AC 249 ms
29,036 KB
testcase_06 AC 246 ms
29,036 KB
testcase_07 AC 238 ms
27,120 KB
testcase_08 AC 245 ms
26,652 KB
testcase_09 AC 246 ms
29,036 KB
testcase_10 AC 250 ms
29,032 KB
testcase_11 AC 246 ms
28,972 KB
testcase_12 AC 258 ms
29,156 KB
testcase_13 AC 250 ms
27,048 KB
testcase_14 AC 254 ms
28,872 KB
testcase_15 AC 245 ms
28,908 KB
testcase_16 AC 275 ms
26,656 KB
testcase_17 AC 246 ms
26,988 KB
testcase_18 AC 248 ms
26,916 KB
testcase_19 AC 245 ms
28,836 KB
testcase_20 AC 245 ms
27,056 KB
testcase_21 AC 276 ms
27,036 KB
testcase_22 AC 245 ms
27,096 KB
testcase_23 AC 273 ms
27,420 KB
testcase_24 AC 145 ms
25,944 KB
testcase_25 AC 73 ms
16,696 KB
testcase_26 AC 80 ms
14,880 KB
testcase_27 AC 162 ms
21,176 KB
testcase_28 AC 48 ms
13,332 KB
testcase_29 AC 122 ms
18,684 KB
testcase_30 AC 135 ms
23,252 KB
testcase_31 AC 127 ms
25,392 KB
testcase_32 AC 57 ms
14,488 KB
testcase_33 AC 154 ms
19,872 KB
testcase_34 AC 152 ms
24,268 KB
testcase_35 AC 91 ms
16,636 KB
testcase_36 AC 132 ms
18,856 KB
testcase_37 AC 102 ms
16,172 KB
testcase_38 AC 113 ms
21,332 KB
testcase_39 AC 109 ms
20,664 KB
testcase_40 AC 139 ms
25,784 KB
testcase_41 AC 160 ms
20,748 KB
testcase_42 AC 95 ms
18,340 KB
testcase_43 AC 115 ms
20,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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