結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 266 ms
28,840 KB
testcase_04 AC 243 ms
27,020 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 239 ms
27,056 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 246 ms
29,036 KB
testcase_12 AC 250 ms
29,284 KB
testcase_13 WA -
testcase_14 AC 237 ms
28,872 KB
testcase_15 AC 232 ms
28,908 KB
testcase_16 AC 245 ms
26,656 KB
testcase_17 AC 231 ms
27,032 KB
testcase_18 AC 254 ms
27,172 KB
testcase_19 AC 245 ms
28,964 KB
testcase_20 AC 229 ms
27,176 KB
testcase_21 WA -
testcase_22 AC 231 ms
27,288 KB
testcase_23 AC 231 ms
27,616 KB
testcase_24 WA -
testcase_25 AC 73 ms
16,820 KB
testcase_26 AC 80 ms
15,012 KB
testcase_27 AC 160 ms
21,216 KB
testcase_28 AC 47 ms
13,324 KB
testcase_29 WA -
testcase_30 AC 135 ms
23,248 KB
testcase_31 AC 119 ms
25,516 KB
testcase_32 WA -
testcase_33 AC 126 ms
19,796 KB
testcase_34 WA -
testcase_35 AC 88 ms
16,628 KB
testcase_36 AC 130 ms
18,988 KB
testcase_37 WA -
testcase_38 AC 109 ms
21,460 KB
testcase_39 AC 102 ms
20,692 KB
testcase_40 WA -
testcase_41 AC 149 ms
20,876 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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 T%S==0:
	ans="Yes"
else:
	ans="No"
print(ans)
0