結果

問題 No.1581 Multiple Sequence
ユーザー 👑 NachiaNachia
提出日時 2021-07-02 23:20:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-29 13:07:14
合計ジャッジ時間 2,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 49 ms
12,416 KB
testcase_03 AC 52 ms
13,184 KB
testcase_04 AC 15 ms
6,528 KB
testcase_05 AC 56 ms
13,440 KB
testcase_06 AC 23 ms
8,448 KB
testcase_07 AC 14 ms
6,400 KB
testcase_08 AC 19 ms
7,424 KB
testcase_09 AC 50 ms
12,672 KB
testcase_10 AC 30 ms
9,856 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 20 ms
7,680 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 53 ms
13,184 KB
testcase_15 AC 35 ms
10,624 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 59 ms
13,952 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 44 ms
12,160 KB
testcase_20 AC 47 ms
12,544 KB
testcase_21 AC 57 ms
13,184 KB
testcase_22 AC 27 ms
9,344 KB
testcase_23 AC 66 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)


int main(){
  int N; cin >> N;
  vector<vector<int>> E(N+1);
  for(int i=1; i<=N; i++) for(int j=i*2; j<=N; j+=i) E[j].push_back(i-1);
  for(int i=0; i<N; i++) E[i+1].push_back(i);
  vector<ull> dp(N+1,0);
  dp[N] = 1;
  for(int i=N; i>=0; i--){
    dp[i] %= 1000000007;
    for(int e : E[i]) dp[e] += dp[i];
  }
  cout << dp[0] << "\n";
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_inst;
0