結果

問題 No.1581 Multiple Sequence
ユーザー umezoumezo
提出日時 2021-07-02 23:29:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 209,924 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 13:13:55
合計ジャッジ時間 5,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 225 ms
5,376 KB
testcase_03 AC 247 ms
5,376 KB
testcase_04 AC 60 ms
5,376 KB
testcase_05 AC 260 ms
5,376 KB
testcase_06 AC 107 ms
5,376 KB
testcase_07 AC 57 ms
5,376 KB
testcase_08 AC 81 ms
5,376 KB
testcase_09 AC 233 ms
5,376 KB
testcase_10 AC 148 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 90 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 255 ms
5,376 KB
testcase_15 AC 177 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 280 ms
5,376 KB
testcase_18 AC 22 ms
5,376 KB
testcase_19 AC 223 ms
5,376 KB
testcase_20 AC 226 ms
5,376 KB
testcase_21 AC 255 ms
5,376 KB
testcase_22 AC 133 ms
5,376 KB
testcase_23 AC 291 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=1e9+7;
ll dp[100010];

vector<ll> divisor(ll x){
  set<ll> s;
  for(ll i=1;i*i<=x;i++){
    if(x%i==0){
      s.insert(i);
      s.insert(x/i);
    }
  }
  vector<ll> res;
  for(auto y:s) res.push_back(y);
  return res;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll m;
  cin>>m;
  
  dp[0]=1;
  for(int i=1;i<=m;i++){
    vector<ll> A=divisor(i);
    for(auto x:A){
      dp[i]=(dp[i]+dp[i/x-1])%MOD;
    }
  }
  cout<<dp[m]<<endl;
  
  return 0;
}
0