結果

問題 No.2811 Calculation Within Sequence
ユーザー 寝癖寝癖
提出日時 2024-07-20 12:18:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 139,136 KB
最終ジャッジ日時 2024-07-20 12:19:05
合計ジャッジ時間 9,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 190 ms
139,136 KB
testcase_04 AC 148 ms
135,744 KB
testcase_05 AC 162 ms
138,928 KB
testcase_06 AC 180 ms
139,004 KB
testcase_07 AC 161 ms
138,952 KB
testcase_08 AC 175 ms
139,076 KB
testcase_09 AC 179 ms
138,544 KB
testcase_10 AC 175 ms
138,504 KB
testcase_11 AC 163 ms
138,620 KB
testcase_12 AC 167 ms
138,644 KB
testcase_13 AC 159 ms
138,488 KB
testcase_14 AC 150 ms
135,864 KB
testcase_15 AC 166 ms
138,960 KB
testcase_16 AC 189 ms
138,744 KB
testcase_17 AC 150 ms
136,520 KB
testcase_18 AC 171 ms
138,612 KB
testcase_19 AC 168 ms
138,880 KB
testcase_20 AC 153 ms
135,972 KB
testcase_21 AC 153 ms
136,212 KB
testcase_22 AC 150 ms
136,008 KB
testcase_23 AC 178 ms
136,984 KB
testcase_24 AC 131 ms
107,392 KB
testcase_25 AC 67 ms
82,688 KB
testcase_26 AC 68 ms
83,456 KB
testcase_27 AC 119 ms
99,048 KB
testcase_28 AC 56 ms
68,736 KB
testcase_29 AC 102 ms
98,944 KB
testcase_30 AC 92 ms
98,008 KB
testcase_31 AC 119 ms
104,064 KB
testcase_32 AC 58 ms
73,728 KB
testcase_33 AC 95 ms
99,316 KB
testcase_34 AC 116 ms
101,988 KB
testcase_35 AC 70 ms
88,192 KB
testcase_36 AC 111 ms
97,920 KB
testcase_37 AC 83 ms
96,768 KB
testcase_38 AC 83 ms
99,072 KB
testcase_39 AC 88 ms
98,048 KB
testcase_40 AC 112 ms
107,520 KB
testcase_41 AC 105 ms
98,304 KB
testcase_42 AC 70 ms
88,832 KB
testcase_43 AC 88 ms
99,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

g = gcd(*T)
if all(s % g == 0 for s in S):
    print('Yes')
else:
    print('No')
0