結果

問題 No.1581 Multiple Sequence
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-01 09:43:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 4,534 ms
コンパイル使用メモリ 308,972 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-06-11 02:26:22
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 57 ms
8,064 KB
testcase_03 AC 62 ms
8,448 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 65 ms
8,832 KB
testcase_06 AC 28 ms
6,144 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 21 ms
5,752 KB
testcase_09 AC 59 ms
8,200 KB
testcase_10 AC 36 ms
6,964 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 22 ms
5,888 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 62 ms
8,448 KB
testcase_15 AC 43 ms
7,296 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 71 ms
8,960 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 55 ms
7,936 KB
testcase_20 AC 57 ms
8,192 KB
testcase_21 AC 62 ms
8,448 KB
testcase_22 AC 33 ms
6,576 KB
testcase_23 AC 72 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  // r=kx (k+1)x=m 
  int m;cin>>m;
  vc<mint>dp(m+1,-1); 
  auto f=[&](auto f,int rest)->mint{
    if(rest==0)return 1;
    if(dp[rest]!=-1)return dp[rest];
    mint res=0;
    for(int i=1;i*i<=rest;i++)if(rest%i==0){
      res+=f(f,rest/i-1);
      if(i!=rest/i)res+=f(f,i-1);
    }
    return dp[rest]=res;
  };
  cout<<f(f,m).val();
}
0