結果

問題 No.1791 Repeat Multiplication
ユーザー ace_amuroace_amuro
提出日時 2023-04-13 18:08:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 3,000 ms
コード長 569 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 81,220 KB
実行使用メモリ 27,220 KB
最終ジャッジ日時 2024-10-09 15:47:16
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 24 ms
8,364 KB
testcase_09 AC 22 ms
8,520 KB
testcase_10 AC 21 ms
7,984 KB
testcase_11 AC 20 ms
8,236 KB
testcase_12 AC 13 ms
6,816 KB
testcase_13 AC 93 ms
26,448 KB
testcase_14 AC 93 ms
26,568 KB
testcase_15 AC 63 ms
21,504 KB
testcase_16 AC 70 ms
22,028 KB
testcase_17 AC 96 ms
26,792 KB
testcase_18 AC 81 ms
24,676 KB
testcase_19 AC 88 ms
26,268 KB
testcase_20 AC 72 ms
23,500 KB
testcase_21 AC 85 ms
26,048 KB
testcase_22 AC 91 ms
26,848 KB
testcase_23 AC 73 ms
22,948 KB
testcase_24 AC 89 ms
26,392 KB
testcase_25 AC 85 ms
26,200 KB
testcase_26 AC 90 ms
26,732 KB
testcase_27 AC 73 ms
24,808 KB
testcase_28 AC 103 ms
27,220 KB
testcase_29 AC 106 ms
27,216 KB
testcase_30 AC 95 ms
27,092 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 99 ms
27,216 KB
testcase_33 AC 97 ms
27,096 KB
testcase_34 AC 102 ms
27,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<ctime>
#include<string>
#include<algorithm>
#include<vector>
#include<queue>
#include<stack>
#include<map>
using namespace std;
typedef long long LL;
const int MR=1.5e6+10;
int n,Q,x;
LL dp[MR],s[MR];
int main(){
    scanf("%d%d",&n,&Q);
    dp[1] = 1;
    for(int i=1;i<=n;i++) {
        for(int j=2*i;j<=n;j+=i){
            dp[j] += dp[i];
        }
        s[i] = s[i-1] + dp[i];
    }
    while(Q--){
        scanf("%d",&x);
        printf("%lld\n",dp[x]*s[n/x]);
    }
    return 0;
}
0