結果

問題 No.2811 Calculation Within Sequence
ユーザー とりゐとりゐ
提出日時 2024-07-19 21:21:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 132,184 KB
最終ジャッジ日時 2024-07-19 21:21:59
合計ジャッジ時間 7,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 159 ms
130,968 KB
testcase_04 AC 171 ms
131,432 KB
testcase_05 AC 156 ms
131,420 KB
testcase_06 AC 172 ms
131,488 KB
testcase_07 AC 177 ms
131,280 KB
testcase_08 AC 162 ms
131,424 KB
testcase_09 AC 158 ms
131,160 KB
testcase_10 AC 162 ms
131,324 KB
testcase_11 AC 174 ms
131,492 KB
testcase_12 AC 155 ms
131,288 KB
testcase_13 AC 146 ms
131,780 KB
testcase_14 AC 182 ms
131,300 KB
testcase_15 AC 179 ms
131,220 KB
testcase_16 AC 158 ms
131,476 KB
testcase_17 AC 145 ms
131,268 KB
testcase_18 AC 176 ms
131,380 KB
testcase_19 AC 184 ms
131,548 KB
testcase_20 AC 168 ms
131,460 KB
testcase_21 AC 146 ms
131,700 KB
testcase_22 AC 140 ms
131,372 KB
testcase_23 AC 146 ms
132,184 KB
testcase_24 AC 119 ms
107,096 KB
testcase_25 AC 61 ms
78,080 KB
testcase_26 AC 70 ms
82,176 KB
testcase_27 AC 125 ms
98,176 KB
testcase_28 AC 57 ms
68,096 KB
testcase_29 AC 105 ms
98,944 KB
testcase_30 AC 117 ms
96,784 KB
testcase_31 AC 143 ms
104,064 KB
testcase_32 AC 54 ms
71,424 KB
testcase_33 AC 138 ms
99,056 KB
testcase_34 AC 100 ms
100,768 KB
testcase_35 AC 74 ms
87,168 KB
testcase_36 AC 110 ms
98,176 KB
testcase_37 AC 77 ms
92,640 KB
testcase_38 AC 90 ms
98,720 KB
testcase_39 AC 80 ms
94,872 KB
testcase_40 AC 106 ms
107,136 KB
testcase_41 AC 103 ms
98,196 KB
testcase_42 AC 73 ms
86,400 KB
testcase_43 AC 84 ms
98,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))

import math
def calc(c):
  g=0
  for i in c:
    g=math.gcd(i,g)
  return g

if calc(b)%calc(a)==0:
  print("Yes")
else:
  print("No")
0