結果

問題 No.1791 Repeat Multiplication
ユーザー t98slidert98slider
提出日時 2023-07-29 04:12:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,750 ms / 3,000 ms
コード長 699 bytes
コンパイル時間 1,585 ms
コンパイル使用メモリ 169,584 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-10-07 05:24:26
合計ジャッジ時間 34,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 41 ms
5,632 KB
testcase_09 AC 36 ms
5,248 KB
testcase_10 AC 36 ms
5,248 KB
testcase_11 AC 33 ms
5,248 KB
testcase_12 AC 19 ms
5,248 KB
testcase_13 AC 1,387 ms
35,712 KB
testcase_14 AC 1,338 ms
36,352 KB
testcase_15 AC 937 ms
27,484 KB
testcase_16 AC 900 ms
26,880 KB
testcase_17 AC 1,581 ms
37,480 KB
testcase_18 AC 1,238 ms
30,748 KB
testcase_19 AC 1,610 ms
35,288 KB
testcase_20 AC 880 ms
28,544 KB
testcase_21 AC 1,528 ms
34,816 KB
testcase_22 AC 1,750 ms
37,600 KB
testcase_23 AC 1,101 ms
29,256 KB
testcase_24 AC 1,605 ms
36,224 KB
testcase_25 AC 1,423 ms
33,508 KB
testcase_26 AC 1,676 ms
36,960 KB
testcase_27 AC 1,224 ms
30,848 KB
testcase_28 AC 1,576 ms
38,400 KB
testcase_29 AC 1,618 ms
38,272 KB
testcase_30 AC 1,565 ms
38,400 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1,576 ms
38,400 KB
testcase_33 AC 1,567 ms
38,272 KB
testcase_34 AC 1,737 ms
38,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, Q, x;
    cin >> N >> Q;
    vector<ll> dp(N + 1, 1), dp2(N + 1), dp3(N + 1);
    dp2[0] = 1;
    for(int i = N / 2; i >= 1; i--){
        for(int j = 2 * i; j <= N; j += i){
            dp[i] += dp[j];
        }
    }
    dp3[1] = 1;
    for(int j = __lg(N); j >= 0; j--){
        for(int i = N; i >= 1; i--){
            for(int j = 2 * i; j <= N; j += i){
                dp3[j] += dp3[i];
            }
            dp2[i] += dp3[i];
            dp3[i] = 0;
        }
    }
    while(Q--){
        cin >> x;
        cout << dp2[x] * dp[x] << '\n';
    }
}
0