結果

問題 No.1791 Repeat Multiplication
ユーザー simansiman
提出日時 2023-05-03 11:23:32
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 285 ms / 3,000 ms
コード長 765 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 141,284 KB
実行使用メモリ 26,972 KB
最終ジャッジ日時 2024-11-21 16:59:51
合計ジャッジ時間 9,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
26,880 KB
testcase_01 AC 7 ms
26,968 KB
testcase_02 AC 8 ms
26,880 KB
testcase_03 AC 7 ms
26,844 KB
testcase_04 AC 7 ms
26,752 KB
testcase_05 AC 8 ms
26,880 KB
testcase_06 AC 9 ms
26,752 KB
testcase_07 AC 8 ms
26,880 KB
testcase_08 AC 170 ms
26,836 KB
testcase_09 AC 152 ms
26,880 KB
testcase_10 AC 148 ms
26,868 KB
testcase_11 AC 135 ms
26,880 KB
testcase_12 AC 84 ms
26,960 KB
testcase_13 AC 264 ms
26,848 KB
testcase_14 AC 264 ms
26,880 KB
testcase_15 AC 234 ms
26,732 KB
testcase_16 AC 240 ms
26,752 KB
testcase_17 AC 261 ms
26,752 KB
testcase_18 AC 252 ms
26,840 KB
testcase_19 AC 253 ms
26,752 KB
testcase_20 AC 242 ms
26,740 KB
testcase_21 AC 251 ms
26,880 KB
testcase_22 AC 275 ms
26,840 KB
testcase_23 AC 245 ms
26,880 KB
testcase_24 AC 265 ms
26,752 KB
testcase_25 AC 251 ms
26,752 KB
testcase_26 AC 278 ms
26,748 KB
testcase_27 AC 239 ms
26,880 KB
testcase_28 AC 285 ms
26,752 KB
testcase_29 AC 265 ms
26,808 KB
testcase_30 AC 270 ms
26,900 KB
testcase_31 AC 8 ms
26,776 KB
testcase_32 AC 265 ms
26,856 KB
testcase_33 AC 269 ms
26,972 KB
testcase_34 AC 273 ms
26,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[1500010];
ll ans[1500010];

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;
}
0