結果

問題 No.1250 汝は倍数なりや?
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-09 12:21:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 96,032 KB
最終ジャッジ日時 2024-06-09 17:49:50
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,984 KB
testcase_01 AC 32 ms
52,216 KB
testcase_02 AC 32 ms
53,200 KB
testcase_03 AC 33 ms
52,952 KB
testcase_04 AC 31 ms
53,152 KB
testcase_05 AC 31 ms
52,532 KB
testcase_06 AC 31 ms
52,540 KB
testcase_07 AC 32 ms
52,772 KB
testcase_08 AC 33 ms
53,136 KB
testcase_09 AC 33 ms
53,508 KB
testcase_10 AC 33 ms
52,468 KB
testcase_11 WA -
testcase_12 AC 32 ms
53,016 KB
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 37 ms
52,464 KB
testcase_15 AC 37 ms
53,816 KB
testcase_16 AC 35 ms
52,520 KB
testcase_17 AC 35 ms
53,424 KB
testcase_18 AC 35 ms
53,284 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 31 ms
53,168 KB
testcase_21 AC 34 ms
53,024 KB
testcase_22 AC 34 ms
52,724 KB
testcase_23 AC 36 ms
59,100 KB
testcase_24 AC 37 ms
60,180 KB
testcase_25 AC 37 ms
60,452 KB
testcase_26 AC 32 ms
52,876 KB
testcase_27 AC 36 ms
60,348 KB
testcase_28 AC 33 ms
53,020 KB
testcase_29 AC 36 ms
59,000 KB
testcase_30 AC 37 ms
60,556 KB
testcase_31 AC 32 ms
52,956 KB
testcase_32 AC 37 ms
59,420 KB
testcase_33 AC 150 ms
96,032 KB
testcase_34 AC 80 ms
85,132 KB
testcase_35 AC 96 ms
92,016 KB
testcase_36 AC 128 ms
93,832 KB
testcase_37 AC 110 ms
85,628 KB
testcase_38 AC 111 ms
86,432 KB
testcase_39 AC 76 ms
85,240 KB
testcase_40 AC 78 ms
85,272 KB
testcase_41 AC 118 ms
87,924 KB
testcase_42 AC 86 ms
81,872 KB
testcase_43 AC 134 ms
93,164 KB
testcase_44 AC 80 ms
81,564 KB
testcase_45 AC 104 ms
94,220 KB
testcase_46 AC 78 ms
79,372 KB
testcase_47 AC 84 ms
86,604 KB
testcase_48 AC 34 ms
53,564 KB
testcase_49 AC 33 ms
53,540 KB
testcase_50 AC 31 ms
52,316 KB
testcase_51 AC 32 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bufio_scanner = []


def main():
    n, h = [int(fmt_scan()) for _ in range(2)]
    a = [int(x) for x in input().split()]

    for _, v in enumerate(a):
        if v % gcd(h, v) == 0:
            h //= gcd(h, v)

    print("YES" if h == 1 else "NO")


def fmt_scan() -> str:
    sc = bufio_scanner
    if len(sc) == 0:
        for v in reversed(input().split()):
            sc.append(v)
    return sc.pop()


def gcd(a, b) -> int:
    a, b = max(a, b), min(a, b)
    while b > 0:
        a, b = b, a % b
    return a


main()
0