結果

問題 No.1791 Repeat Multiplication
ユーザー ytftytft
提出日時 2021-12-25 14:48:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 3,000 ms
コード長 478 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 166,456 KB
実行使用メモリ 27,208 KB
最終ジャッジ日時 2024-09-21 17:09:31
合計ジャッジ時間 6,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 23 ms
6,944 KB
testcase_09 AC 20 ms
6,944 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 19 ms
6,940 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 154 ms
25,244 KB
testcase_14 AC 166 ms
25,784 KB
testcase_15 AC 113 ms
19,740 KB
testcase_16 AC 118 ms
19,452 KB
testcase_17 AC 171 ms
26,316 KB
testcase_18 AC 132 ms
22,004 KB
testcase_19 AC 159 ms
24,936 KB
testcase_20 AC 123 ms
20,480 KB
testcase_21 AC 151 ms
24,636 KB
testcase_22 AC 168 ms
26,544 KB
testcase_23 AC 123 ms
20,940 KB
testcase_24 AC 159 ms
25,648 KB
testcase_25 AC 141 ms
23,976 KB
testcase_26 AC 165 ms
26,064 KB
testcase_27 AC 127 ms
22,016 KB
testcase_28 AC 172 ms
27,020 KB
testcase_29 AC 172 ms
27,004 KB
testcase_30 AC 170 ms
27,136 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 174 ms
26,972 KB
testcase_33 AC 169 ms
27,208 KB
testcase_34 AC 169 ms
27,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N,Q,x;
    scanf("%d%d",&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){
        scanf("%d",&x);
        printf("%ld\n",a[x-1]*b[x-1]);
    }
}
0