結果

問題 No.2811 Calculation Within Sequence
ユーザー ああいいああいい
提出日時 2024-07-20 19:32:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,120 KB
最終ジャッジ日時 2024-07-20 19:32:46
合計ジャッジ時間 10,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 188 ms
131,580 KB
testcase_04 AC 174 ms
131,424 KB
testcase_05 AC 206 ms
131,188 KB
testcase_06 AC 179 ms
131,576 KB
testcase_07 AC 173 ms
131,072 KB
testcase_08 AC 175 ms
131,316 KB
testcase_09 AC 176 ms
131,192 KB
testcase_10 AC 174 ms
131,576 KB
testcase_11 AC 177 ms
131,308 KB
testcase_12 AC 198 ms
131,192 KB
testcase_13 AC 181 ms
131,748 KB
testcase_14 AC 183 ms
131,448 KB
testcase_15 AC 186 ms
131,688 KB
testcase_16 AC 177 ms
131,356 KB
testcase_17 AC 176 ms
131,600 KB
testcase_18 AC 172 ms
131,580 KB
testcase_19 AC 172 ms
131,440 KB
testcase_20 AC 184 ms
131,748 KB
testcase_21 AC 172 ms
131,604 KB
testcase_22 AC 174 ms
131,680 KB
testcase_23 AC 174 ms
132,120 KB
testcase_24 AC 128 ms
107,392 KB
testcase_25 AC 85 ms
86,528 KB
testcase_26 AC 84 ms
87,552 KB
testcase_27 AC 128 ms
101,536 KB
testcase_28 AC 70 ms
78,976 KB
testcase_29 AC 111 ms
99,072 KB
testcase_30 AC 110 ms
98,612 KB
testcase_31 AC 119 ms
103,808 KB
testcase_32 AC 76 ms
81,408 KB
testcase_33 AC 105 ms
98,816 KB
testcase_34 AC 118 ms
104,648 KB
testcase_35 AC 88 ms
91,008 KB
testcase_36 AC 109 ms
97,920 KB
testcase_37 AC 96 ms
94,976 KB
testcase_38 AC 96 ms
98,304 KB
testcase_39 AC 107 ms
96,768 KB
testcase_40 AC 127 ms
107,520 KB
testcase_41 AC 125 ms
98,752 KB
testcase_42 AC 86 ms
90,496 KB
testcase_43 AC 98 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
T = list(map(int,input().split()))
S = list(map(int,input().split()))

def gcd(a,b):
	while b:
		a,b = b,a % b
	return a
	
now = T[0]
for i in range(1,a):
	now = gcd(now,T[i])
import sys
for s in S:
	if s % now != 0:
		print('No')
		exit()
print('Yes')
0