結果

問題 No.1250 汝は倍数なりや?
ユーザー 👑 KazunKazun
提出日時 2020-09-18 03:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 146 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 108,228 KB
最終ジャッジ日時 2024-06-22 07:33:16
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,632 KB
testcase_01 AC 32 ms
52,124 KB
testcase_02 AC 35 ms
52,612 KB
testcase_03 AC 30 ms
52,644 KB
testcase_04 AC 32 ms
53,420 KB
testcase_05 AC 31 ms
52,772 KB
testcase_06 AC 32 ms
52,800 KB
testcase_07 AC 32 ms
52,096 KB
testcase_08 AC 32 ms
52,972 KB
testcase_09 AC 31 ms
52,556 KB
testcase_10 AC 33 ms
52,944 KB
testcase_11 AC 33 ms
53,272 KB
testcase_12 AC 32 ms
52,684 KB
testcase_13 AC 33 ms
52,236 KB
testcase_14 AC 32 ms
51,940 KB
testcase_15 AC 33 ms
52,692 KB
testcase_16 AC 31 ms
52,564 KB
testcase_17 AC 30 ms
53,148 KB
testcase_18 AC 30 ms
52,768 KB
testcase_19 AC 31 ms
52,076 KB
testcase_20 AC 31 ms
52,200 KB
testcase_21 AC 32 ms
53,836 KB
testcase_22 AC 31 ms
53,124 KB
testcase_23 AC 32 ms
53,308 KB
testcase_24 AC 33 ms
53,632 KB
testcase_25 AC 32 ms
52,352 KB
testcase_26 AC 31 ms
52,648 KB
testcase_27 AC 32 ms
52,776 KB
testcase_28 AC 31 ms
53,316 KB
testcase_29 AC 32 ms
52,620 KB
testcase_30 AC 32 ms
53,648 KB
testcase_31 AC 32 ms
53,060 KB
testcase_32 AC 32 ms
52,624 KB
testcase_33 AC 83 ms
108,228 KB
testcase_34 AC 58 ms
83,412 KB
testcase_35 AC 71 ms
99,424 KB
testcase_36 AC 74 ms
102,408 KB
testcase_37 AC 59 ms
84,212 KB
testcase_38 AC 59 ms
87,716 KB
testcase_39 AC 57 ms
83,404 KB
testcase_40 AC 56 ms
82,984 KB
testcase_41 AC 63 ms
90,836 KB
testcase_42 AC 50 ms
75,984 KB
testcase_43 AC 74 ms
102,412 KB
testcase_44 AC 51 ms
76,096 KB
testcase_45 AC 74 ms
102,440 KB
testcase_46 AC 46 ms
71,344 KB
testcase_47 AC 59 ms
86,992 KB
testcase_48 AC 32 ms
52,576 KB
testcase_49 AC 31 ms
52,028 KB
testcase_50 AC 31 ms
53,324 KB
testcase_51 AC 31 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

X=1
for a in A:
    X*=a
    X%=H

if X==0:
    print("YES")
else:
    print("NO")
0