結果

問題 No.1532 Different Products
ユーザー だれだれ
提出日時 2021-06-04 21:34:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,626 ms / 4,000 ms
コード長 290 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 210,560 KB
実行使用メモリ 199,604 KB
最終ジャッジ日時 2024-11-19 12:49:39
合計ジャッジ時間 114,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 403 ms
39,860 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 69 ms
13,056 KB
testcase_10 AC 550 ms
46,676 KB
testcase_11 AC 353 ms
35,656 KB
testcase_12 AC 1,672 ms
110,304 KB
testcase_13 AC 679 ms
53,648 KB
testcase_14 AC 2,795 ms
164,712 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 446 ms
45,040 KB
testcase_17 AC 344 ms
34,820 KB
testcase_18 AC 180 ms
25,316 KB
testcase_19 AC 1,529 ms
106,972 KB
testcase_20 AC 2,828 ms
167,600 KB
testcase_21 AC 752 ms
61,120 KB
testcase_22 AC 840 ms
63,980 KB
testcase_23 AC 288 ms
31,572 KB
testcase_24 AC 2,542 ms
156,468 KB
testcase_25 AC 1,315 ms
94,364 KB
testcase_26 AC 78 ms
14,592 KB
testcase_27 AC 1,047 ms
79,892 KB
testcase_28 AC 766 ms
63,052 KB
testcase_29 AC 773 ms
61,780 KB
testcase_30 AC 1,593 ms
106,532 KB
testcase_31 AC 1,621 ms
107,264 KB
testcase_32 AC 1,868 ms
121,960 KB
testcase_33 AC 1,361 ms
95,984 KB
testcase_34 AC 2,378 ms
145,820 KB
testcase_35 AC 1,805 ms
121,032 KB
testcase_36 AC 2,265 ms
143,344 KB
testcase_37 AC 404 ms
43,008 KB
testcase_38 AC 2,461 ms
151,856 KB
testcase_39 AC 2,115 ms
136,704 KB
testcase_40 AC 2,234 ms
139,520 KB
testcase_41 AC 3,485 ms
190,784 KB
testcase_42 AC 2,839 ms
171,772 KB
testcase_43 AC 3,056 ms
179,068 KB
testcase_44 AC 3,408 ms
195,500 KB
testcase_45 AC 3,455 ms
196,680 KB
testcase_46 AC 3,327 ms
188,348 KB
testcase_47 AC 3,497 ms
198,832 KB
testcase_48 AC 3,419 ms
196,364 KB
testcase_49 AC 3,439 ms
197,016 KB
testcase_50 AC 3,604 ms
195,556 KB
testcase_51 AC 3,626 ms
198,416 KB
testcase_52 AC 3,294 ms
192,804 KB
testcase_53 AC 3,432 ms
198,884 KB
testcase_54 AC 3,347 ms
192,920 KB
testcase_55 AC 3,408 ms
197,052 KB
testcase_56 AC 3,198 ms
188,280 KB
testcase_57 AC 3,379 ms
190,004 KB
testcase_58 AC 3,338 ms
195,132 KB
testcase_59 AC 3,046 ms
183,284 KB
testcase_60 AC 3,507 ms
199,604 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 3,374 ms
196,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:11:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   11 | main(){l n,k;cin>>n>>k;m.resize(n + 1);cout<<f(n, k)-1<<"\n";}
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using l=long long;
vector<unordered_map<l,l>> m;
l f(l n,l k){
  if (m[n][k])return m[n][k];
  if (k==0)return 0;
  if (n==1)return m[n][k]=2;
  return m[n][k]=f(n-1,k)+f(n-1,k/n);
}
main(){l n,k;cin>>n>>k;m.resize(n + 1);cout<<f(n, k)-1<<"\n";}
0