結果

問題 No.2811 Calculation Within Sequence
ユーザー るこーそーるこーそー
提出日時 2024-09-27 21:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 133,784 KB
最終ジャッジ日時 2024-09-27 21:46:38
合計ジャッジ時間 7,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 176 ms
133,096 KB
testcase_04 AC 158 ms
133,468 KB
testcase_05 AC 157 ms
133,112 KB
testcase_06 AC 155 ms
132,980 KB
testcase_07 AC 158 ms
132,732 KB
testcase_08 AC 154 ms
133,100 KB
testcase_09 AC 154 ms
132,604 KB
testcase_10 AC 179 ms
133,112 KB
testcase_11 AC 152 ms
132,852 KB
testcase_12 AC 151 ms
132,856 KB
testcase_13 AC 153 ms
132,948 KB
testcase_14 AC 163 ms
132,968 KB
testcase_15 AC 164 ms
133,104 KB
testcase_16 AC 160 ms
132,728 KB
testcase_17 AC 161 ms
132,764 KB
testcase_18 AC 165 ms
132,980 KB
testcase_19 AC 165 ms
132,852 KB
testcase_20 AC 167 ms
132,940 KB
testcase_21 AC 163 ms
133,008 KB
testcase_22 AC 148 ms
133,004 KB
testcase_23 AC 151 ms
133,784 KB
testcase_24 AC 139 ms
107,392 KB
testcase_25 AC 85 ms
86,784 KB
testcase_26 AC 80 ms
88,064 KB
testcase_27 AC 125 ms
102,688 KB
testcase_28 AC 66 ms
79,232 KB
testcase_29 AC 106 ms
98,688 KB
testcase_30 AC 105 ms
99,112 KB
testcase_31 AC 114 ms
103,808 KB
testcase_32 AC 73 ms
81,664 KB
testcase_33 AC 100 ms
98,688 KB
testcase_34 AC 113 ms
105,152 KB
testcase_35 AC 97 ms
90,880 KB
testcase_36 AC 103 ms
98,304 KB
testcase_37 AC 93 ms
95,232 KB
testcase_38 AC 92 ms
98,816 KB
testcase_39 AC 100 ms
97,792 KB
testcase_40 AC 119 ms
107,136 KB
testcase_41 AC 99 ms
97,792 KB
testcase_42 AC 79 ms
90,496 KB
testcase_43 AC 94 ms
98,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def euclid(a,b):
  r=a%b
  while r>0:
    a,b=b,r
    r=a%b
  return b

gcdT=T[0]
for t in T[1:]:
    gcdT=euclid(gcdT,t)

ok=True
for s in S:
    if s%gcdT!=0:
        ok=False
        break

print('Yes' if ok else 'No')
0