結果

問題 No.1250 汝は倍数なりや?
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-09 11:52:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 94,376 KB
最終ジャッジ日時 2024-06-09 17:23:12
合計ジャッジ時間 5,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,260 KB
testcase_01 AC 35 ms
52,892 KB
testcase_02 AC 34 ms
52,400 KB
testcase_03 AC 34 ms
52,196 KB
testcase_04 WA -
testcase_05 AC 35 ms
53,488 KB
testcase_06 AC 33 ms
53,372 KB
testcase_07 AC 35 ms
52,620 KB
testcase_08 AC 37 ms
52,860 KB
testcase_09 AC 39 ms
52,484 KB
testcase_10 AC 37 ms
52,488 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,976 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 32 ms
52,664 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 WA -
testcase_23 AC 35 ms
53,376 KB
testcase_24 AC 35 ms
52,692 KB
testcase_25 AC 34 ms
52,600 KB
testcase_26 WA -
testcase_27 AC 34 ms
53,608 KB
testcase_28 WA -
testcase_29 AC 32 ms
52,764 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 81 ms
94,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 57 ms
78,392 KB
testcase_38 AC 62 ms
79,444 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 62 ms
82,380 KB
testcase_42 AC 52 ms
71,884 KB
testcase_43 AC 72 ms
90,428 KB
testcase_44 AC 51 ms
72,840 KB
testcase_45 WA -
testcase_46 AC 50 ms
68,576 KB
testcase_47 WA -
testcase_48 AC 33 ms
52,180 KB
testcase_49 AC 33 ms
53,364 KB
testcase_50 AC 32 ms
53,340 KB
testcase_51 AC 33 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bufio_scanner = []


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

    for i, v in enumerate(a):
        if h % v == 0:
            h //= v
        a[i] = 1

    ans = "NO"
    for v in a:
        if v % h == 0:
            ans = "YES"

    print(ans)


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


main()
0