結果

問題 No.2811 Calculation Within Sequence
ユーザー vwxyzvwxyz
提出日時 2024-07-19 22:03:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,164 KB
最終ジャッジ日時 2024-07-19 22:04:07
合計ジャッジ時間 9,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 27 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 257 ms
29,040 KB
testcase_06 AC 216 ms
29,032 KB
testcase_07 WA -
testcase_08 AC 231 ms
26,652 KB
testcase_09 AC 245 ms
29,164 KB
testcase_10 AC 270 ms
29,092 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 237 ms
27,056 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 230 ms
27,168 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 245 ms
27,164 KB
testcase_22 AC 241 ms
27,100 KB
testcase_23 AC 240 ms
27,612 KB
testcase_24 AC 136 ms
26,064 KB
testcase_25 AC 72 ms
16,692 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 120 ms
18,888 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 56 ms
14,360 KB
testcase_33 WA -
testcase_34 AC 147 ms
24,272 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 98 ms
16,268 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 129 ms
25,784 KB
testcase_41 AC 154 ms
20,876 KB
testcase_42 AC 80 ms
18,476 KB
testcase_43 AC 106 ms
20,260 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 T%S==0:
	ans="Yes"
else:
	ans="No"
print(ans)
0