結果
問題 | No.1791 Repeat Multiplication |
ユーザー | siman |
提出日時 | 2023-05-03 11:22:04 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 3,508 ms |
コンパイル使用メモリ | 141,672 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-11-21 16:59:07 |
合計ジャッジ時間 | 13,343 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
19,072 KB |
testcase_01 | AC | 5 ms
19,016 KB |
testcase_02 | AC | 6 ms
19,072 KB |
testcase_03 | AC | 6 ms
19,072 KB |
testcase_04 | AC | 6 ms
19,040 KB |
testcase_05 | AC | 7 ms
18,944 KB |
testcase_06 | AC | 6 ms
19,072 KB |
testcase_07 | AC | 5 ms
19,072 KB |
testcase_08 | AC | 169 ms
18,944 KB |
testcase_09 | AC | 149 ms
18,944 KB |
testcase_10 | AC | 144 ms
18,944 KB |
testcase_11 | AC | 135 ms
18,944 KB |
testcase_12 | AC | 82 ms
18,944 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 8 ms
18,952 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; ll dp[1000010]; ll ans[1000010]; int main() { memset(dp, 0, sizeof(dp)); memset(ans, 0, sizeof(ans)); int N, Q; cin >> N >> Q; dp[1] = 1; for (int i = 1; i <= N; ++i) { if (dp[i] == 0) continue; int k = 2 * i; while (k <= N) { dp[k] += dp[i]; k += i; } } for (int i = 1; i <= N; ++i) { for (int k = 1; k <= N / i; ++k) { ans[i] += dp[i] * dp[k]; } } for (int t = 0; t < Q; ++t) { int x; cin >> x; cout << ans[x] << endl; } return 0; }