結果

問題 No.1581 Multiple Sequence
ユーザー haruki_4936haruki_4936
提出日時 2021-07-03 22:23:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 6,375 ms
コンパイル使用メモリ 323,216 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-30 14:26:18
合計ジャッジ時間 10,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 188 ms
8,832 KB
testcase_03 AC 209 ms
9,344 KB
testcase_04 AC 47 ms
6,944 KB
testcase_05 AC 223 ms
9,216 KB
testcase_06 AC 87 ms
6,940 KB
testcase_07 AC 44 ms
6,940 KB
testcase_08 AC 63 ms
6,940 KB
testcase_09 AC 199 ms
8,960 KB
testcase_10 AC 120 ms
7,296 KB
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 70 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 215 ms
9,344 KB
testcase_15 AC 145 ms
7,936 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 240 ms
9,600 KB
testcase_18 AC 16 ms
6,944 KB
testcase_19 AC 184 ms
8,576 KB
testcase_20 AC 194 ms
8,704 KB
testcase_21 AC 214 ms
9,088 KB
testcase_22 AC 107 ms
7,040 KB
testcase_23 AC 248 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include<bits/stdc++.h>
#include <atcoder/all>
#define rep(i,n) for(long long i = 0;i < (n);i++)
#define all(v) v.begin(),v.end()
#define dec(n) cout << fixed << setprecision(n);
#define large "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
#define small "abcdefghijklmnopqrstuvwxyz"
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<ll,ll>;
using vl = vector<ll>;
using vvl = vector<vl>;
using vc = vector<char>;
using vvc = vector<vc>;

const ll MOD = 1000000007;
const ll MAX = 2000100;
const ll inf = 8e18;
const long double pi = acos(-1);

ll gcd(ll a,ll b){
  if(b == 0) return a;
  return gcd(b , a % b);
}
ll mod(ll a){ return a % MOD; }
ll lcm(ll a,ll b){ return (a*b)/gcd(a,b); }

ll memo[100009];
ll iscame[100009];


ll dp(ll x){
  if(iscame[x]) return memo[x];
  iscame[x] = true;

  ll ans = 0;

  for(ll i=1; i*i <= x; i++){
    if(i == 1){
      ans += 1;
      ans += dp(x-1);
      continue;
    }
    if(x % i == 0){
      if(i*i == x){
        ans += dp((x-i)/i);
        ans %= MOD;
      }
      else{
        ans += dp((x-(x/i))/(x/i));
        ans += dp((x-i)/i);
        ans %= MOD;
      }
    }
  }
  return memo[x] = ans;
}

int main(){
  ll m; cin >> m;

  memo[0] = 0;
  iscame[0] = true;
  memo[1] = 1;
  iscame[1] = true;
  cout << dp(m) << endl;

  // rep(i,m+1) cout << dp(i) << ' ';
}
0