結果

問題 No.1250 汝は倍数なりや?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-12 21:51:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 142 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 108,040 KB
最終ジャッジ日時 2024-09-24 08:39:08
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,616 KB
testcase_01 AC 35 ms
52,620 KB
testcase_02 AC 35 ms
53,432 KB
testcase_03 AC 36 ms
52,388 KB
testcase_04 AC 35 ms
52,708 KB
testcase_05 AC 36 ms
52,484 KB
testcase_06 AC 35 ms
53,060 KB
testcase_07 AC 36 ms
52,184 KB
testcase_08 AC 35 ms
52,900 KB
testcase_09 AC 36 ms
52,680 KB
testcase_10 AC 35 ms
53,564 KB
testcase_11 AC 35 ms
52,528 KB
testcase_12 AC 35 ms
52,636 KB
testcase_13 AC 36 ms
52,180 KB
testcase_14 AC 36 ms
53,408 KB
testcase_15 AC 36 ms
52,472 KB
testcase_16 AC 36 ms
53,492 KB
testcase_17 AC 36 ms
52,692 KB
testcase_18 AC 36 ms
52,348 KB
testcase_19 AC 36 ms
52,192 KB
testcase_20 AC 36 ms
52,404 KB
testcase_21 AC 35 ms
52,560 KB
testcase_22 AC 36 ms
51,760 KB
testcase_23 AC 36 ms
52,560 KB
testcase_24 AC 37 ms
53,128 KB
testcase_25 AC 36 ms
53,112 KB
testcase_26 AC 36 ms
51,964 KB
testcase_27 AC 36 ms
53,880 KB
testcase_28 AC 36 ms
52,884 KB
testcase_29 AC 36 ms
52,416 KB
testcase_30 AC 36 ms
53,428 KB
testcase_31 AC 36 ms
52,580 KB
testcase_32 AC 35 ms
52,952 KB
testcase_33 AC 88 ms
108,040 KB
testcase_34 AC 62 ms
83,640 KB
testcase_35 AC 78 ms
98,404 KB
testcase_36 AC 81 ms
102,148 KB
testcase_37 AC 64 ms
84,388 KB
testcase_38 AC 65 ms
86,400 KB
testcase_39 AC 63 ms
83,788 KB
testcase_40 AC 63 ms
83,408 KB
testcase_41 AC 69 ms
90,020 KB
testcase_42 AC 55 ms
77,060 KB
testcase_43 AC 81 ms
102,244 KB
testcase_44 AC 56 ms
76,532 KB
testcase_45 AC 81 ms
102,220 KB
testcase_46 AC 50 ms
72,532 KB
testcase_47 AC 65 ms
86,216 KB
testcase_48 AC 36 ms
52,748 KB
testcase_49 AC 35 ms
52,452 KB
testcase_50 AC 35 ms
53,168 KB
testcase_51 AC 35 ms
51,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h = map(int,input().split())
A = list(map(int,input().split()))

ans = 1
for a in A:
    ans *= a
    ans %= h
print("NO" if ans else "YES")
0