結果

問題 No.2811 Calculation Within Sequence
ユーザー nouka28nouka28
提出日時 2024-07-19 21:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 132,316 KB
最終ジャッジ日時 2024-07-19 21:23:22
合計ジャッジ時間 8,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 160 ms
131,512 KB
testcase_04 AC 148 ms
131,640 KB
testcase_05 AC 157 ms
131,452 KB
testcase_06 AC 178 ms
131,500 KB
testcase_07 AC 157 ms
131,348 KB
testcase_08 AC 169 ms
131,728 KB
testcase_09 AC 172 ms
131,472 KB
testcase_10 AC 168 ms
131,480 KB
testcase_11 AC 154 ms
131,524 KB
testcase_12 AC 162 ms
131,532 KB
testcase_13 AC 155 ms
131,572 KB
testcase_14 AC 147 ms
131,648 KB
testcase_15 AC 161 ms
131,400 KB
testcase_16 AC 156 ms
131,520 KB
testcase_17 AC 149 ms
131,916 KB
testcase_18 AC 165 ms
131,248 KB
testcase_19 AC 164 ms
131,228 KB
testcase_20 AC 147 ms
131,440 KB
testcase_21 AC 147 ms
131,612 KB
testcase_22 AC 148 ms
131,632 KB
testcase_23 AC 151 ms
132,316 KB
testcase_24 AC 130 ms
107,340 KB
testcase_25 AC 71 ms
79,360 KB
testcase_26 AC 73 ms
82,636 KB
testcase_27 AC 122 ms
98,152 KB
testcase_28 AC 57 ms
67,840 KB
testcase_29 AC 103 ms
98,904 KB
testcase_30 AC 102 ms
97,180 KB
testcase_31 AC 119 ms
104,064 KB
testcase_32 AC 61 ms
72,192 KB
testcase_33 AC 99 ms
98,816 KB
testcase_34 AC 109 ms
100,656 KB
testcase_35 AC 69 ms
87,296 KB
testcase_36 AC 109 ms
98,284 KB
testcase_37 AC 82 ms
92,928 KB
testcase_38 AC 86 ms
98,996 KB
testcase_39 AC 83 ms
95,232 KB
testcase_40 AC 107 ms
107,008 KB
testcase_41 AC 111 ms
98,096 KB
testcase_42 AC 74 ms
87,168 KB
testcase_43 AC 95 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import math
g=0

for i in t:g=math.gcd(g,i)

for i in s:
    if i%g:
        print("No")
        exit()
print("Yes")
0