結果

問題 No.1791 Repeat Multiplication
ユーザー ytftytft
提出日時 2021-12-25 14:47:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 338 ms / 3,000 ms
コード長 458 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 168,008 KB
実行使用メモリ 27,072 KB
最終ジャッジ日時 2024-09-21 17:08:34
合計ジャッジ時間 11,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 163 ms
6,940 KB
testcase_09 AC 146 ms
6,944 KB
testcase_10 AC 144 ms
6,944 KB
testcase_11 AC 131 ms
6,940 KB
testcase_12 AC 78 ms
6,940 KB
testcase_13 AC 303 ms
25,056 KB
testcase_14 AC 314 ms
25,460 KB
testcase_15 AC 262 ms
19,740 KB
testcase_16 AC 263 ms
19,220 KB
testcase_17 AC 320 ms
26,368 KB
testcase_18 AC 285 ms
21,820 KB
testcase_19 AC 302 ms
24,752 KB
testcase_20 AC 272 ms
20,256 KB
testcase_21 AC 315 ms
24,512 KB
testcase_22 AC 327 ms
26,360 KB
testcase_23 AC 270 ms
20,812 KB
testcase_24 AC 325 ms
25,456 KB
testcase_25 AC 309 ms
23,840 KB
testcase_26 AC 317 ms
25,920 KB
testcase_27 AC 288 ms
21,824 KB
testcase_28 AC 321 ms
26,872 KB
testcase_29 AC 326 ms
27,072 KB
testcase_30 AC 330 ms
26,880 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 328 ms
26,904 KB
testcase_33 AC 336 ms
26,864 KB
testcase_34 AC 338 ms
26,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N,Q,x;
    cin>>N>>Q;
    long long a[N],b[N];
    for(int i=N-1;i>=0;--i){
        a[i]=1;
        for(int j=i*2+1;j<N;j+=i+1){
            a[i]+=a[j];
        }
    }
    fill(b+1,b+N,0);
    b[0]=1;
    for(int i=0;i<N;++i){
        for(int j=i*2+1;j<N;j+=i+1){
            b[j]+=b[i];
        }
    }
    for(int i=0;i<Q;++i){
        cin>>x;
        cout<<(a[x-1]*b[x-1])<<endl;
    }
}
0