結果

問題 No.2811 Calculation Within Sequence
ユーザー mattu34mattu34
提出日時 2024-07-26 20:52:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 2,331 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,124 KB
最終ジャッジ日時 2024-07-26 20:53:04
合計ジャッジ時間 9,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
12,032 KB
testcase_01 AC 39 ms
11,904 KB
testcase_02 AC 40 ms
12,032 KB
testcase_03 AC 210 ms
44,492 KB
testcase_04 AC 197 ms
42,452 KB
testcase_05 AC 210 ms
42,448 KB
testcase_06 AC 229 ms
42,568 KB
testcase_07 AC 195 ms
44,496 KB
testcase_08 AC 224 ms
42,692 KB
testcase_09 AC 209 ms
42,408 KB
testcase_10 AC 214 ms
42,436 KB
testcase_11 AC 212 ms
44,496 KB
testcase_12 AC 190 ms
42,568 KB
testcase_13 AC 212 ms
42,136 KB
testcase_14 AC 191 ms
42,448 KB
testcase_15 AC 188 ms
44,456 KB
testcase_16 AC 186 ms
42,524 KB
testcase_17 AC 217 ms
42,500 KB
testcase_18 AC 191 ms
44,456 KB
testcase_19 AC 191 ms
44,492 KB
testcase_20 AC 190 ms
42,476 KB
testcase_21 AC 208 ms
42,516 KB
testcase_22 AC 203 ms
42,500 KB
testcase_23 AC 227 ms
45,124 KB
testcase_24 AC 132 ms
33,364 KB
testcase_25 AC 70 ms
20,320 KB
testcase_26 AC 71 ms
19,552 KB
testcase_27 AC 128 ms
31,356 KB
testcase_28 AC 55 ms
15,948 KB
testcase_29 AC 114 ms
25,308 KB
testcase_30 AC 109 ms
30,760 KB
testcase_31 AC 114 ms
31,968 KB
testcase_32 AC 60 ms
17,100 KB
testcase_33 AC 103 ms
27,628 KB
testcase_34 AC 151 ms
33,332 KB
testcase_35 AC 81 ms
21,840 KB
testcase_36 AC 108 ms
26,124 KB
testcase_37 AC 95 ms
22,168 KB
testcase_38 AC 91 ms
27,448 KB
testcase_39 AC 97 ms
25,636 KB
testcase_40 AC 121 ms
32,960 KB
testcase_41 AC 141 ms
30,232 KB
testcase_42 AC 91 ms
23,252 KB
testcase_43 AC 107 ms
26,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")


a, b = mi()
T = li()
S = li()

gcd = math.gcd(*T)
for s in S:
    if s % gcd != 0:
        pn()
        exit()
py()
0