結果

問題 No.1532 Different Products
ユーザー shakayamishakayami
提出日時 2021-06-04 21:45:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 456 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,060,648 KB
最終ジャッジ日時 2024-11-19 13:35:40
合計ジャッジ時間 222,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,568 KB
testcase_01 AC 1,793 ms
189,396 KB
testcase_02 MLE -
testcase_03 AC 31 ms
17,572 KB
testcase_04 AC 31 ms
17,828 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 38 ms
18,848 KB
testcase_08 AC 48 ms
435,436 KB
testcase_09 MLE -
testcase_10 AC 2,157 ms
217,364 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 AC 63 ms
448,208 KB
testcase_16 AC 2,291 ms
209,360 KB
testcase_17 MLE -
testcase_18 AC 1,046 ms
116,448 KB
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 AC 3,100 ms
351,756 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 508 ms
68,532 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 TLE -
testcase_47 MLE -
testcase_48 TLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 TLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 MLE -
testcase_57 MLE -
testcase_58 MLE -
testcase_59 MLE -
testcase_60 MLE -
testcase_61 AC 31 ms
10,880 KB
testcase_62 AC 30 ms
10,624 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=10**7)
def solve(N,K):
    if K==0:
        return 0
    if N==0:
        return 1
    #Nを含まない+Nを含む
    return solve(N-1,K)+solve(N-1,K//N)
def naive(N,K):
    res=0
    for S in range(1,1<<N):
        tmp=1
        for i in range(N):
            if (S>>i)&1:
                tmp*=(i+1)
        if tmp<=K:
            res+=1
    return res
N,K=map(int,input().split())
print(solve(N,K)-1)
0