結果

問題 No.2811 Calculation Within Sequence
ユーザー fiblonariafiblonaria
提出日時 2024-07-23 14:59:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,236 KB
最終ジャッジ日時 2024-07-23 14:59:28
合計ジャッジ時間 17,337 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 440 ms
43,108 KB
testcase_04 AC 418 ms
40,904 KB
testcase_05 AC 424 ms
40,956 KB
testcase_06 AC 454 ms
40,956 KB
testcase_07 AC 429 ms
43,108 KB
testcase_08 AC 431 ms
40,952 KB
testcase_09 AC 456 ms
41,084 KB
testcase_10 AC 431 ms
40,956 KB
testcase_11 AC 432 ms
43,108 KB
testcase_12 AC 456 ms
40,952 KB
testcase_13 AC 429 ms
40,928 KB
testcase_14 AC 441 ms
43,148 KB
testcase_15 AC 433 ms
43,108 KB
testcase_16 AC 436 ms
40,944 KB
testcase_17 AC 460 ms
40,952 KB
testcase_18 AC 429 ms
43,236 KB
testcase_19 AC 429 ms
43,124 KB
testcase_20 AC 461 ms
41,172 KB
testcase_21 AC 434 ms
41,080 KB
testcase_22 AC 428 ms
40,952 KB
testcase_23 AC 462 ms
41,144 KB
testcase_24 AC 258 ms
32,076 KB
testcase_25 AC 109 ms
18,996 KB
testcase_26 AC 124 ms
18,684 KB
testcase_27 AC 303 ms
30,016 KB
testcase_28 AC 66 ms
14,580 KB
testcase_29 AC 206 ms
24,336 KB
testcase_30 AC 231 ms
30,896 KB
testcase_31 AC 224 ms
30,856 KB
testcase_32 AC 80 ms
15,940 KB
testcase_33 AC 211 ms
26,640 KB
testcase_34 AC 285 ms
33,276 KB
testcase_35 AC 143 ms
20,984 KB
testcase_36 AC 218 ms
25,832 KB
testcase_37 AC 163 ms
20,860 KB
testcase_38 AC 184 ms
26,196 KB
testcase_39 AC 174 ms
24,396 KB
testcase_40 AC 258 ms
31,816 KB
testcase_41 AC 268 ms
29,108 KB
testcase_42 AC 139 ms
21,936 KB
testcase_43 AC 185 ms
26,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
	m = min(a, b)
	M = max(a, b)
	while m > 0:
		m, M = M % m, m
	return M

def gcd_array(A):
	ret = 0
	for a in A:
		ret = gcd(a, ret)
	return ret

p, q = map(int, input().split())
T = list(map(int, input().split()))
S = list(map(int, input().split()))
if gcd_array(S) % gcd_array(T) == 0:
	print('Yes')
else:
	print('No')
0