結果

問題 No.2811 Calculation Within Sequence
ユーザー vwxyzvwxyz
提出日時 2024-07-19 21:58:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,160 KB
最終ジャッジ日時 2024-07-19 21:58:48
合計ジャッジ時間 10,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 32 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 254 ms
29,036 KB
testcase_06 AC 230 ms
29,096 KB
testcase_07 WA -
testcase_08 AC 251 ms
26,652 KB
testcase_09 AC 251 ms
28,972 KB
testcase_10 AC 251 ms
29,160 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 253 ms
27,052 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 250 ms
27,100 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 246 ms
27,036 KB
testcase_22 AC 252 ms
27,148 KB
testcase_23 AC 246 ms
27,420 KB
testcase_24 AC 146 ms
25,936 KB
testcase_25 AC 78 ms
16,692 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 122 ms
18,760 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 59 ms
14,356 KB
testcase_33 WA -
testcase_34 AC 155 ms
24,268 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 103 ms
16,268 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 142 ms
25,784 KB
testcase_41 AC 159 ms
20,744 KB
testcase_42 AC 87 ms
18,340 KB
testcase_43 AC 115 ms
20,384 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(T,t)
if S%T==0:
	ans="Yes"
else:
	ans="No"
print(ans)
0