結果

問題 No.1532 Different Products
ユーザー googol_S0googol_S0
提出日時 2021-06-04 20:55:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,384 ms / 4,000 ms
コード長 710 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 375,424 KB
最終ジャッジ日時 2024-04-30 00:42:31
合計ジャッジ時間 54,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 443 ms
151,168 KB
testcase_02 AC 56 ms
61,568 KB
testcase_03 AC 55 ms
61,568 KB
testcase_04 AC 49 ms
59,008 KB
testcase_05 AC 50 ms
59,520 KB
testcase_06 AC 89 ms
71,808 KB
testcase_07 AC 111 ms
76,032 KB
testcase_08 AC 124 ms
79,104 KB
testcase_09 AC 217 ms
101,504 KB
testcase_10 AC 414 ms
147,712 KB
testcase_11 AC 363 ms
135,424 KB
testcase_12 AC 731 ms
225,536 KB
testcase_13 AC 505 ms
173,176 KB
testcase_14 AC 1,157 ms
322,816 KB
testcase_15 AC 157 ms
89,424 KB
testcase_16 AC 601 ms
188,160 KB
testcase_17 AC 371 ms
137,984 KB
testcase_18 AC 310 ms
125,312 KB
testcase_19 AC 694 ms
217,216 KB
testcase_20 AC 1,140 ms
322,560 KB
testcase_21 AC 682 ms
216,832 KB
testcase_22 AC 502 ms
171,264 KB
testcase_23 AC 375 ms
140,928 KB
testcase_24 AC 1,061 ms
303,360 KB
testcase_25 AC 698 ms
215,248 KB
testcase_26 AC 263 ms
111,616 KB
testcase_27 AC 777 ms
235,904 KB
testcase_28 AC 593 ms
188,160 KB
testcase_29 AC 766 ms
224,896 KB
testcase_30 AC 907 ms
254,228 KB
testcase_31 AC 895 ms
252,672 KB
testcase_32 AC 983 ms
268,544 KB
testcase_33 AC 838 ms
246,784 KB
testcase_34 AC 1,030 ms
294,528 KB
testcase_35 AC 940 ms
266,240 KB
testcase_36 AC 1,048 ms
293,632 KB
testcase_37 AC 753 ms
219,136 KB
testcase_38 AC 1,096 ms
302,636 KB
testcase_39 AC 989 ms
282,880 KB
testcase_40 AC 991 ms
285,184 KB
testcase_41 AC 1,363 ms
364,800 KB
testcase_42 AC 1,223 ms
331,392 KB
testcase_43 AC 1,222 ms
344,320 KB
testcase_44 AC 1,325 ms
370,048 KB
testcase_45 AC 1,320 ms
370,788 KB
testcase_46 AC 1,319 ms
361,856 KB
testcase_47 AC 1,365 ms
373,632 KB
testcase_48 AC 1,384 ms
370,688 KB
testcase_49 AC 1,345 ms
371,840 KB
testcase_50 AC 1,372 ms
369,664 KB
testcase_51 AC 1,375 ms
372,992 KB
testcase_52 AC 1,341 ms
367,104 KB
testcase_53 AC 1,376 ms
374,420 KB
testcase_54 AC 1,347 ms
367,360 KB
testcase_55 AC 1,339 ms
371,416 KB
testcase_56 AC 1,287 ms
360,576 KB
testcase_57 AC 1,367 ms
363,136 KB
testcase_58 AC 1,336 ms
369,152 KB
testcase_59 AC 1,257 ms
351,844 KB
testcase_60 AC 1,348 ms
375,424 KB
testcase_61 AC 40 ms
51,840 KB
testcase_62 AC 42 ms
52,224 KB
testcase_63 AC 1,350 ms
371,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
M=10**5
if M>=K:
  DP=[[0]*K for i in range(N+1)]
  DP[0][0]=1
  for i in range(N):
    for j in range(K):
      DP[i+1][j]+=DP[i][j]
    for j in range(K):
      x=(j+1)*(i+1)
      if x<=K:
        DP[i+1][x-1]+=DP[i][j]
  print(sum(DP[N])-1)
  exit()
DP1=[[0]*M for i in range(N+1)]
Z=K//M
DP2=[[0]*Z for i in range(N+1)]
DP1[0][0]=1
for i in range(N):
  for j in range(M):
    DP1[i+1][j]+=DP1[i][j]
    x=(j+1)*(i+1)
    if x>K:
      continue
    elif x<=M:
      DP1[i+1][x-1]+=DP1[i][j]
    else:
      DP2[i+1][K//x-1]+=DP1[i][j]
  for j in range(Z):
    DP2[i+1][j]+=DP2[i][j]
    x=(j+1)//(i+1)
    if x>0:
      DP2[i+1][x-1]+=DP2[i][j]
print(sum(DP1[N])+sum(DP2[N])-1)
0