結果

問題 No.2811 Calculation Within Sequence
ユーザー tassei903tassei903
提出日時 2024-07-19 21:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,364 KB
最終ジャッジ日時 2024-07-19 21:33:27
合計ジャッジ時間 7,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 151 ms
131,432 KB
testcase_04 AC 152 ms
131,420 KB
testcase_05 AC 160 ms
131,772 KB
testcase_06 AC 170 ms
131,700 KB
testcase_07 AC 149 ms
131,440 KB
testcase_08 AC 186 ms
131,812 KB
testcase_09 AC 159 ms
131,564 KB
testcase_10 AC 164 ms
131,760 KB
testcase_11 AC 153 ms
131,240 KB
testcase_12 AC 189 ms
131,556 KB
testcase_13 AC 166 ms
131,548 KB
testcase_14 AC 144 ms
131,368 KB
testcase_15 AC 161 ms
131,228 KB
testcase_16 AC 159 ms
131,292 KB
testcase_17 AC 147 ms
131,644 KB
testcase_18 AC 170 ms
131,308 KB
testcase_19 AC 157 ms
131,380 KB
testcase_20 AC 147 ms
131,348 KB
testcase_21 AC 148 ms
131,976 KB
testcase_22 AC 155 ms
131,780 KB
testcase_23 AC 154 ms
132,364 KB
testcase_24 AC 161 ms
107,192 KB
testcase_25 AC 66 ms
79,104 KB
testcase_26 AC 73 ms
82,816 KB
testcase_27 AC 121 ms
98,176 KB
testcase_28 AC 56 ms
68,224 KB
testcase_29 AC 107 ms
99,072 KB
testcase_30 AC 98 ms
96,856 KB
testcase_31 AC 120 ms
103,808 KB
testcase_32 AC 90 ms
72,156 KB
testcase_33 AC 107 ms
99,072 KB
testcase_34 AC 109 ms
100,980 KB
testcase_35 AC 71 ms
87,808 KB
testcase_36 AC 103 ms
98,176 KB
testcase_37 AC 81 ms
92,996 KB
testcase_38 AC 87 ms
98,884 KB
testcase_39 AC 80 ms
95,488 KB
testcase_40 AC 118 ms
107,096 KB
testcase_41 AC 111 ms
98,296 KB
testcase_42 AC 79 ms
87,424 KB
testcase_43 AC 90 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

a, b = na()
x = na()
y = na()
from math import gcd
g = 0
for i in range(a):
    g = gcd(g, x[i])

for i in range(b):
    if y[i] % g:
        print("No")
        exit()
print("Yes")
0