結果

問題 No.2811 Calculation Within Sequence
ユーザー ra5anchorra5anchor
提出日時 2024-07-20 11:29:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 139,004 KB
最終ジャッジ日時 2024-07-20 11:29:57
合計ジャッジ時間 10,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 178 ms
138,744 KB
testcase_04 AC 178 ms
135,736 KB
testcase_05 AC 188 ms
138,672 KB
testcase_06 AC 198 ms
138,888 KB
testcase_07 AC 176 ms
138,752 KB
testcase_08 AC 185 ms
138,872 KB
testcase_09 AC 188 ms
138,464 KB
testcase_10 AC 185 ms
138,744 KB
testcase_11 AC 176 ms
139,004 KB
testcase_12 AC 186 ms
138,744 KB
testcase_13 AC 173 ms
138,660 KB
testcase_14 AC 163 ms
135,604 KB
testcase_15 AC 179 ms
138,744 KB
testcase_16 AC 179 ms
138,620 KB
testcase_17 AC 161 ms
136,344 KB
testcase_18 AC 199 ms
138,864 KB
testcase_19 AC 183 ms
138,752 KB
testcase_20 AC 164 ms
135,724 KB
testcase_21 AC 166 ms
136,340 KB
testcase_22 AC 161 ms
136,080 KB
testcase_23 AC 165 ms
136,980 KB
testcase_24 AC 141 ms
107,264 KB
testcase_25 AC 74 ms
82,304 KB
testcase_26 AC 78 ms
83,456 KB
testcase_27 AC 130 ms
98,840 KB
testcase_28 AC 62 ms
68,352 KB
testcase_29 AC 111 ms
99,072 KB
testcase_30 AC 105 ms
97,756 KB
testcase_31 AC 132 ms
103,936 KB
testcase_32 AC 64 ms
73,344 KB
testcase_33 AC 107 ms
99,200 KB
testcase_34 AC 114 ms
102,056 KB
testcase_35 AC 77 ms
88,064 KB
testcase_36 AC 115 ms
98,048 KB
testcase_37 AC 92 ms
96,768 KB
testcase_38 AC 92 ms
99,072 KB
testcase_39 AC 98 ms
98,304 KB
testcase_40 AC 122 ms
107,264 KB
testcase_41 AC 114 ms
98,304 KB
testcase_42 AC 78 ms
86,912 KB
testcase_43 AC 96 ms
99,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

G = math.gcd(*T)
for item in S:
    if item % G != 0:
        print('No')
        exit()
print('Yes')
0