結果

問題 No.1581 Multiple Sequence
ユーザー momoyuumomoyuu
提出日時 2024-08-07 22:35:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,155 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 1,432 ms
コンパイル使用メモリ 127,600 KB
実行使用メモリ 77,676 KB
最終ジャッジ日時 2024-08-07 22:35:20
合計ジャッジ時間 15,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,488 KB
testcase_01 AC 5 ms
12,268 KB
testcase_02 AC 834 ms
65,840 KB
testcase_03 AC 941 ms
70,424 KB
testcase_04 AC 212 ms
30,644 KB
testcase_05 AC 996 ms
72,772 KB
testcase_06 AC 381 ms
41,860 KB
testcase_07 AC 194 ms
29,792 KB
testcase_08 AC 307 ms
35,572 KB
testcase_09 AC 872 ms
67,584 KB
testcase_10 AC 583 ms
50,492 KB
testcase_11 AC 97 ms
21,764 KB
testcase_12 AC 320 ms
37,608 KB
testcase_13 AC 12 ms
13,420 KB
testcase_14 AC 987 ms
70,864 KB
testcase_15 AC 640 ms
56,008 KB
testcase_16 AC 126 ms
23,956 KB
testcase_17 AC 1,066 ms
76,316 KB
testcase_18 AC 75 ms
20,144 KB
testcase_19 AC 810 ms
64,296 KB
testcase_20 AC 861 ms
66,184 KB
testcase_21 AC 917 ms
70,228 KB
testcase_22 AC 518 ms
47,056 KB
testcase_23 AC 1,155 ms
77,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/modint>
using mint = atcoder::modint1000000007;

#include<unordered_map>
#include<map>
const int M = 1<<17;
vector<map<int,mint>> memo(M+1);
vector<vector<int>> facs(M+1);

mint calc(int res,int can){
    if(res%can!=0) return 0;
    if(res==0) return 1;
    if(memo[res].find(can)!=memo[res].end()) return memo[res][can];
    mint tmp = 0;
    tmp += calc(res-can,can);
    for(auto&j:facs[res]) {
        if(j%can!=0) continue;
        if(j==can) continue;
        tmp += calc(res-j,j);
    }
    return memo[res][can] = tmp;
};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int m;
    cin>>m;

    for(int i = 2;i<=m;i++){
        for(int j = i;j<=m;j+=i){
            facs[j].push_back(i);
        }
    }
    mint ans = calc(m,1);
    cout<<ans.val()<<endl;
}   

0