結果

問題 No.1532 Different Products
ユーザー chineristACchineristAC
提出日時 2021-05-02 17:30:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-07-21 02:32:19
合計ジャッジ時間 29,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 174 ms
62,848 KB
testcase_02 AC 42 ms
58,496 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 46 ms
60,416 KB
testcase_07 AC 51 ms
61,952 KB
testcase_08 AC 54 ms
62,208 KB
testcase_09 AC 109 ms
62,720 KB
testcase_10 AC 204 ms
63,488 KB
testcase_11 AC 173 ms
62,848 KB
testcase_12 AC 414 ms
63,744 KB
testcase_13 AC 299 ms
63,488 KB
testcase_14 AC 659 ms
63,872 KB
testcase_15 AC 105 ms
63,744 KB
testcase_16 AC 179 ms
63,340 KB
testcase_17 AC 202 ms
63,232 KB
testcase_18 AC 184 ms
63,604 KB
testcase_19 AC 398 ms
64,000 KB
testcase_20 AC 667 ms
64,384 KB
testcase_21 AC 239 ms
63,488 KB
testcase_22 AC 286 ms
63,232 KB
testcase_23 AC 232 ms
63,360 KB
testcase_24 AC 615 ms
64,384 KB
testcase_25 AC 360 ms
63,232 KB
testcase_26 AC 96 ms
62,720 KB
testcase_27 AC 313 ms
63,232 KB
testcase_28 AC 249 ms
63,232 KB
testcase_29 AC 204 ms
63,104 KB
testcase_30 AC 399 ms
63,872 KB
testcase_31 AC 403 ms
63,616 KB
testcase_32 AC 465 ms
64,000 KB
testcase_33 AC 375 ms
63,488 KB
testcase_34 AC 581 ms
63,872 KB
testcase_35 AC 463 ms
64,000 KB
testcase_36 AC 572 ms
63,616 KB
testcase_37 AC 134 ms
63,104 KB
testcase_38 AC 598 ms
63,872 KB
testcase_39 AC 539 ms
64,128 KB
testcase_40 AC 544 ms
63,872 KB
testcase_41 AC 763 ms
64,584 KB
testcase_42 AC 694 ms
64,384 KB
testcase_43 AC 715 ms
64,128 KB
testcase_44 AC 780 ms
64,640 KB
testcase_45 AC 780 ms
64,896 KB
testcase_46 AC 782 ms
64,256 KB
testcase_47 AC 795 ms
64,256 KB
testcase_48 AC 792 ms
64,640 KB
testcase_49 AC 786 ms
64,768 KB
testcase_50 AC 785 ms
64,000 KB
testcase_51 AC 799 ms
64,000 KB
testcase_52 AC 782 ms
64,384 KB
testcase_53 AC 792 ms
64,896 KB
testcase_54 AC 784 ms
64,452 KB
testcase_55 AC 791 ms
64,768 KB
testcase_56 AC 774 ms
64,256 KB
testcase_57 AC 772 ms
64,000 KB
testcase_58 AC 796 ms
64,384 KB
testcase_59 AC 773 ms
63,872 KB
testcase_60 AC 806 ms
64,512 KB
testcase_61 WA -
testcase_62 AC 35 ms
52,664 KB
testcase_63 AC 799 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
assert 1<=N<=200
assert 1<=K<=10**10
M = min(K,int(K**.5)+1)

a,A = [1]*(M+1),[1]*(M+1)

def cum(i):
    if 1<=i<=M:
        return A[i]
    return a[K//i]

for n in range(1,N+1):
    for i in range(1,M+1):
        A[i] += cum(i*n)
    for i in range(M,n-1,-1):
        a[i] += a[i//n]

print((A[1]-1))
0