結果

問題 No.1791 Repeat Multiplication
ユーザー ripityripity
提出日時 2021-11-21 15:43:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 3,000 ms
コード長 435 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 167,772 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-09-15 14:53:29
合計ジャッジ時間 9,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 170 ms
5,376 KB
testcase_09 AC 152 ms
5,376 KB
testcase_10 AC 150 ms
5,376 KB
testcase_11 AC 135 ms
5,376 KB
testcase_12 AC 82 ms
5,376 KB
testcase_13 AC 275 ms
25,088 KB
testcase_14 AC 277 ms
25,600 KB
testcase_15 AC 242 ms
19,456 KB
testcase_16 AC 245 ms
19,072 KB
testcase_17 AC 282 ms
26,240 KB
testcase_18 AC 254 ms
21,888 KB
testcase_19 AC 271 ms
24,704 KB
testcase_20 AC 250 ms
20,224 KB
testcase_21 AC 272 ms
24,448 KB
testcase_22 AC 284 ms
26,240 KB
testcase_23 AC 248 ms
20,608 KB
testcase_24 AC 278 ms
25,344 KB
testcase_25 AC 262 ms
23,680 KB
testcase_26 AC 290 ms
25,856 KB
testcase_27 AC 256 ms
21,760 KB
testcase_28 AC 289 ms
26,752 KB
testcase_29 AC 290 ms
26,880 KB
testcase_30 AC 285 ms
26,752 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 285 ms
26,880 KB
testcase_33 AC 287 ms
26,880 KB
testcase_34 AC 283 ms
26,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(void){
    int N,Q;
    cin >> N >> Q;
    vector<long> dp(N+1);
    vector<long> sum(N+1);
    dp[1] = 1;
    for( int i = 1; i <= N; i++ ) {
        sum[i] = dp[i]+sum[i-1];
        for( int j = 2; i*j <= N; j++ ) {
            dp[i*j] += dp[i];
        }
    }
    for( int i = 0; i < Q; i++ ) {
        int x;
        cin >> x;
        printf("%ld\n",dp[x]*sum[N/x]);
    }
}
0