結果

問題 No.1250 汝は倍数なりや?
ユーザー gyouzasushigyouzasushi
提出日時 2020-10-09 21:48:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 151 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 264,524 KB
最終ジャッジ日時 2023-09-27 16:17:55
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,296 KB
testcase_01 AC 63 ms
71,136 KB
testcase_02 AC 63 ms
71,244 KB
testcase_03 AC 62 ms
71,240 KB
testcase_04 AC 62 ms
71,028 KB
testcase_05 AC 64 ms
71,224 KB
testcase_06 AC 63 ms
71,244 KB
testcase_07 AC 63 ms
71,148 KB
testcase_08 AC 62 ms
71,204 KB
testcase_09 AC 62 ms
71,260 KB
testcase_10 AC 62 ms
71,204 KB
testcase_11 AC 62 ms
71,028 KB
testcase_12 AC 63 ms
71,112 KB
testcase_13 AC 65 ms
71,204 KB
testcase_14 AC 61 ms
71,240 KB
testcase_15 AC 62 ms
71,280 KB
testcase_16 AC 60 ms
71,004 KB
testcase_17 AC 63 ms
71,428 KB
testcase_18 AC 61 ms
71,240 KB
testcase_19 AC 62 ms
71,240 KB
testcase_20 AC 62 ms
71,044 KB
testcase_21 AC 62 ms
71,460 KB
testcase_22 AC 62 ms
71,352 KB
testcase_23 AC 62 ms
71,240 KB
testcase_24 AC 66 ms
71,208 KB
testcase_25 AC 64 ms
71,228 KB
testcase_26 AC 63 ms
71,164 KB
testcase_27 AC 61 ms
71,248 KB
testcase_28 AC 64 ms
71,244 KB
testcase_29 AC 66 ms
71,376 KB
testcase_30 AC 65 ms
71,224 KB
testcase_31 AC 62 ms
71,512 KB
testcase_32 AC 64 ms
71,244 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, h = map(int, input().split())
a = list(map(int, input().split()))
x = 1
for b in a:
    x *= b
if x % h == 0:
    print("YES")
else:
    print("NO")
0