結果

問題 No.1532 Different Products
ユーザー googol_S0googol_S0
提出日時 2021-06-04 20:55:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,356 ms / 4,000 ms
コード長 710 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 375,552 KB
最終ジャッジ日時 2024-11-19 10:39:30
合計ジャッジ時間 52,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 425 ms
151,296 KB
testcase_02 AC 53 ms
62,592 KB
testcase_03 AC 53 ms
61,440 KB
testcase_04 AC 47 ms
59,392 KB
testcase_05 AC 48 ms
59,392 KB
testcase_06 AC 87 ms
72,320 KB
testcase_07 AC 106 ms
76,288 KB
testcase_08 AC 116 ms
78,976 KB
testcase_09 AC 209 ms
102,272 KB
testcase_10 AC 404 ms
148,096 KB
testcase_11 AC 353 ms
135,040 KB
testcase_12 AC 714 ms
226,432 KB
testcase_13 AC 496 ms
173,568 KB
testcase_14 AC 1,134 ms
323,328 KB
testcase_15 AC 154 ms
89,984 KB
testcase_16 AC 583 ms
188,160 KB
testcase_17 AC 364 ms
138,240 KB
testcase_18 AC 302 ms
125,696 KB
testcase_19 AC 679 ms
217,216 KB
testcase_20 AC 1,120 ms
322,816 KB
testcase_21 AC 665 ms
216,864 KB
testcase_22 AC 500 ms
171,776 KB
testcase_23 AC 361 ms
140,800 KB
testcase_24 AC 1,042 ms
303,872 KB
testcase_25 AC 687 ms
214,996 KB
testcase_26 AC 251 ms
111,744 KB
testcase_27 AC 759 ms
236,072 KB
testcase_28 AC 579 ms
188,672 KB
testcase_29 AC 740 ms
225,280 KB
testcase_30 AC 883 ms
254,336 KB
testcase_31 AC 877 ms
253,440 KB
testcase_32 AC 932 ms
268,928 KB
testcase_33 AC 824 ms
246,732 KB
testcase_34 AC 1,025 ms
295,296 KB
testcase_35 AC 931 ms
266,124 KB
testcase_36 AC 1,020 ms
293,760 KB
testcase_37 AC 716 ms
219,264 KB
testcase_38 AC 1,052 ms
303,360 KB
testcase_39 AC 976 ms
282,700 KB
testcase_40 AC 975 ms
285,824 KB
testcase_41 AC 1,356 ms
365,012 KB
testcase_42 AC 1,177 ms
331,904 KB
testcase_43 AC 1,204 ms
344,064 KB
testcase_44 AC 1,311 ms
369,920 KB
testcase_45 AC 1,335 ms
370,816 KB
testcase_46 AC 1,288 ms
361,984 KB
testcase_47 AC 1,335 ms
374,420 KB
testcase_48 AC 1,327 ms
371,072 KB
testcase_49 AC 1,328 ms
372,352 KB
testcase_50 AC 1,315 ms
370,048 KB
testcase_51 AC 1,338 ms
373,760 KB
testcase_52 AC 1,311 ms
367,360 KB
testcase_53 AC 1,332 ms
375,040 KB
testcase_54 AC 1,312 ms
367,744 KB
testcase_55 AC 1,325 ms
371,456 KB
testcase_56 AC 1,285 ms
361,088 KB
testcase_57 AC 1,289 ms
363,764 KB
testcase_58 AC 1,312 ms
369,280 KB
testcase_59 AC 1,253 ms
352,256 KB
testcase_60 AC 1,339 ms
375,552 KB
testcase_61 AC 40 ms
52,096 KB
testcase_62 AC 40 ms
51,840 KB
testcase_63 AC 1,322 ms
371,584 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