結果

問題 No.2811 Calculation Within Sequence
ユーザー usatyousatyo
提出日時 2024-07-19 21:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,404 KB
最終ジャッジ日時 2024-07-19 21:57:38
合計ジャッジ時間 8,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 172 ms
131,344 KB
testcase_04 AC 187 ms
131,700 KB
testcase_05 AC 162 ms
131,212 KB
testcase_06 AC 185 ms
131,732 KB
testcase_07 AC 188 ms
131,340 KB
testcase_08 AC 172 ms
131,340 KB
testcase_09 AC 172 ms
131,464 KB
testcase_10 AC 174 ms
131,336 KB
testcase_11 AC 189 ms
131,340 KB
testcase_12 AC 168 ms
131,080 KB
testcase_13 AC 159 ms
131,764 KB
testcase_14 AC 164 ms
131,440 KB
testcase_15 AC 190 ms
131,464 KB
testcase_16 AC 168 ms
131,072 KB
testcase_17 AC 149 ms
131,364 KB
testcase_18 AC 185 ms
131,584 KB
testcase_19 AC 189 ms
131,332 KB
testcase_20 AC 184 ms
131,772 KB
testcase_21 AC 154 ms
131,240 KB
testcase_22 AC 152 ms
131,492 KB
testcase_23 AC 156 ms
132,404 KB
testcase_24 AC 130 ms
107,264 KB
testcase_25 AC 70 ms
79,104 KB
testcase_26 AC 81 ms
82,816 KB
testcase_27 AC 140 ms
98,304 KB
testcase_28 AC 63 ms
68,352 KB
testcase_29 AC 115 ms
99,072 KB
testcase_30 AC 127 ms
96,968 KB
testcase_31 AC 126 ms
103,936 KB
testcase_32 AC 63 ms
72,064 KB
testcase_33 AC 119 ms
98,944 KB
testcase_34 AC 114 ms
100,440 KB
testcase_35 AC 87 ms
88,192 KB
testcase_36 AC 120 ms
98,048 KB
testcase_37 AC 87 ms
93,184 KB
testcase_38 AC 102 ms
98,688 KB
testcase_39 AC 100 ms
96,512 KB
testcase_40 AC 114 ms
107,008 KB
testcase_41 AC 110 ms
98,048 KB
testcase_42 AC 81 ms
87,040 KB
testcase_43 AC 98 ms
98,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


a, b = map(int, input().split())
t = list(map(int, input().split()))
s = list(map(int, input().split()))

g1, g2 = 0, 0

for x in t:
    g1 = gcd(g1, x)

for x in s:
    g2 = gcd(g2, x)

if g2 % g1 == 0:
    print("Yes")
else:
    print("No")
0