結果

問題 No.2811 Calculation Within Sequence
ユーザー ButterflvButterflv
提出日時 2024-07-19 21:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 163,196 KB
最終ジャッジ日時 2024-07-19 21:56:22
合計ジャッジ時間 7,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 155 ms
131,584 KB
testcase_04 AC 184 ms
163,196 KB
testcase_05 AC 152 ms
131,332 KB
testcase_06 AC 169 ms
131,452 KB
testcase_07 AC 187 ms
157,312 KB
testcase_08 AC 209 ms
132,092 KB
testcase_09 AC 157 ms
131,444 KB
testcase_10 AC 169 ms
131,972 KB
testcase_11 AC 178 ms
152,200 KB
testcase_12 AC 162 ms
131,580 KB
testcase_13 AC 195 ms
131,756 KB
testcase_14 AC 148 ms
131,448 KB
testcase_15 AC 165 ms
135,524 KB
testcase_16 AC 179 ms
131,484 KB
testcase_17 AC 150 ms
131,596 KB
testcase_18 AC 170 ms
131,452 KB
testcase_19 AC 169 ms
131,588 KB
testcase_20 AC 182 ms
162,996 KB
testcase_21 AC 143 ms
131,748 KB
testcase_22 AC 136 ms
131,496 KB
testcase_23 AC 144 ms
132,252 KB
testcase_24 AC 129 ms
107,520 KB
testcase_25 AC 64 ms
79,616 KB
testcase_26 AC 89 ms
83,584 KB
testcase_27 AC 126 ms
98,304 KB
testcase_28 AC 64 ms
69,248 KB
testcase_29 AC 107 ms
99,328 KB
testcase_30 AC 110 ms
104,196 KB
testcase_31 AC 123 ms
104,064 KB
testcase_32 AC 61 ms
72,192 KB
testcase_33 AC 103 ms
98,816 KB
testcase_34 AC 106 ms
100,376 KB
testcase_35 AC 92 ms
102,656 KB
testcase_36 AC 112 ms
97,664 KB
testcase_37 AC 83 ms
93,440 KB
testcase_38 AC 109 ms
98,816 KB
testcase_39 AC 88 ms
97,024 KB
testcase_40 AC 131 ms
107,008 KB
testcase_41 AC 107 ms
97,920 KB
testcase_42 AC 75 ms
87,680 KB
testcase_43 AC 108 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import*
a,b=map(int,input().split())
T=list(map(int,input().split()))
S=list(map(int,input().split()))

T_gcd=None

if a==1: T_gcd=T[0]
else: T_gcd=gcd(T[0], T[1])

for i in range(1, len(T)): T_gcd=gcd(T_gcd, T[i])

T_mod_set=set()
S_mod_set=set()

for elm in T:
  T_mod_set.add(elm%T_gcd)

for elm in S:
  S_mod_set.add(elm%T_gcd)

flag=True

for elm in S_mod_set:
  if elm not in T_mod_set:
    flag=False

print(["No","Yes"][flag])
0