結果

問題 No.1791 Repeat Multiplication
ユーザー HIcoderHIcoder
提出日時 2023-07-12 11:25:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 3,000 ms
コード長 853 bytes
コンパイル時間 1,131 ms
コンパイル使用メモリ 103,636 KB
実行使用メモリ 27,108 KB
最終ジャッジ日時 2024-09-14 01:26:23
合計ジャッジ時間 9,174 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 163 ms
5,376 KB
testcase_09 AC 140 ms
5,376 KB
testcase_10 AC 139 ms
5,376 KB
testcase_11 AC 130 ms
5,376 KB
testcase_12 AC 76 ms
5,376 KB
testcase_13 AC 266 ms
25,344 KB
testcase_14 AC 271 ms
25,856 KB
testcase_15 AC 240 ms
19,712 KB
testcase_16 AC 235 ms
19,328 KB
testcase_17 AC 281 ms
26,428 KB
testcase_18 AC 249 ms
22,016 KB
testcase_19 AC 266 ms
24,892 KB
testcase_20 AC 235 ms
20,480 KB
testcase_21 AC 269 ms
24,680 KB
testcase_22 AC 275 ms
26,496 KB
testcase_23 AC 243 ms
20,864 KB
testcase_24 AC 276 ms
25,628 KB
testcase_25 AC 264 ms
23,936 KB
testcase_26 AC 275 ms
25,984 KB
testcase_27 AC 253 ms
21,964 KB
testcase_28 AC 293 ms
26,984 KB
testcase_29 AC 279 ms
27,108 KB
testcase_30 AC 277 ms
27,004 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 282 ms
27,000 KB
testcase_33 AC 284 ms
26,996 KB
testcase_34 AC 282 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=998244353;
const double PI=acos(-1);


int main(){
    int N,Q;
    cin>>N>>Q;
    vector<int> x(Q);
    for(int q=0;q<Q;q++){
        cin>>x[q];
    }

    vector<ll> dp(N+1,0);
    dp[1]=1;//末尾が1である者は最初の1とおり
    
    for(int a=1;a<=N;a++){
        for(int b=2*a;b<=N;b+=a){
            dp[b]+=dp[a];
        }
    }

    vector<ll> ans(N+1);
    
    for(int i=1;i<=N;i++){
        
        for(ll k=1;i*k<=N;k++){
            ans[i]+=dp[k]*dp[i];
        }
    }

    for(int q=0;q<Q;q++){
        cout<<ans[x[q]]<<endl;
    }


}
0