結果

問題 No.1250 汝は倍数なりや?
ユーザー noriocnorioc
提出日時 2024-09-30 11:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 241 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 107,752 KB
最終ジャッジ日時 2024-09-30 11:06:20
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,816 KB
testcase_01 AC 33 ms
52,812 KB
testcase_02 AC 32 ms
52,880 KB
testcase_03 AC 33 ms
52,444 KB
testcase_04 AC 32 ms
52,928 KB
testcase_05 AC 33 ms
53,152 KB
testcase_06 AC 36 ms
52,564 KB
testcase_07 AC 32 ms
52,740 KB
testcase_08 AC 33 ms
52,320 KB
testcase_09 AC 32 ms
52,760 KB
testcase_10 AC 32 ms
52,936 KB
testcase_11 AC 33 ms
52,900 KB
testcase_12 AC 34 ms
52,352 KB
testcase_13 AC 34 ms
52,812 KB
testcase_14 AC 32 ms
52,036 KB
testcase_15 AC 31 ms
52,236 KB
testcase_16 AC 32 ms
53,220 KB
testcase_17 AC 33 ms
52,260 KB
testcase_18 AC 33 ms
53,372 KB
testcase_19 AC 32 ms
52,676 KB
testcase_20 AC 33 ms
52,864 KB
testcase_21 AC 33 ms
52,812 KB
testcase_22 AC 32 ms
53,804 KB
testcase_23 AC 33 ms
54,740 KB
testcase_24 AC 40 ms
52,484 KB
testcase_25 AC 34 ms
52,744 KB
testcase_26 AC 31 ms
53,252 KB
testcase_27 AC 33 ms
52,772 KB
testcase_28 AC 34 ms
52,740 KB
testcase_29 AC 34 ms
52,196 KB
testcase_30 AC 33 ms
54,108 KB
testcase_31 AC 32 ms
53,284 KB
testcase_32 AC 33 ms
53,276 KB
testcase_33 AC 89 ms
107,752 KB
testcase_34 AC 63 ms
81,920 KB
testcase_35 AC 79 ms
98,048 KB
testcase_36 AC 85 ms
101,632 KB
testcase_37 AC 65 ms
83,220 KB
testcase_38 AC 69 ms
85,632 KB
testcase_39 AC 65 ms
82,304 KB
testcase_40 AC 65 ms
82,560 KB
testcase_41 AC 73 ms
89,472 KB
testcase_42 AC 57 ms
75,776 KB
testcase_43 AC 96 ms
101,504 KB
testcase_44 AC 57 ms
75,264 KB
testcase_45 AC 84 ms
101,888 KB
testcase_46 AC 52 ms
70,912 KB
testcase_47 AC 67 ms
85,248 KB
testcase_48 AC 35 ms
52,096 KB
testcase_49 AC 35 ms
51,968 KB
testcase_50 AC 35 ms
52,480 KB
testcase_51 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, H = map(int, input().split())
A = list(map(int, input().split()))


def f():
    x = 1
    for a in A:
        x = (x * a) % H
        if x == 0:
            return True

    return x == 0


if f():
    print('YES')
else:
    print('NO')
0