結果

問題 No.1791 Repeat Multiplication
ユーザー tnakao0123tnakao0123
提出日時 2021-12-24 13:22:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 106 ms / 3,000 ms
コード長 678 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 41,796 KB
実行使用メモリ 26,580 KB
最終ジャッジ日時 2024-09-19 11:26:36
合計ジャッジ時間 5,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 85 ms
24,704 KB
testcase_14 AC 89 ms
25,216 KB
testcase_15 AC 68 ms
19,328 KB
testcase_16 AC 60 ms
18,816 KB
testcase_17 AC 90 ms
26,112 KB
testcase_18 AC 73 ms
21,504 KB
testcase_19 AC 86 ms
24,448 KB
testcase_20 AC 74 ms
19,968 KB
testcase_21 AC 84 ms
24,320 KB
testcase_22 AC 96 ms
25,984 KB
testcase_23 AC 76 ms
20,480 KB
testcase_24 AC 88 ms
25,216 KB
testcase_25 AC 84 ms
23,552 KB
testcase_26 AC 90 ms
25,472 KB
testcase_27 AC 74 ms
21,376 KB
testcase_28 AC 91 ms
26,368 KB
testcase_29 AC 106 ms
26,496 KB
testcase_30 AC 101 ms
26,496 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 98 ms
26,496 KB
testcase_33 AC 102 ms
26,580 KB
testcase_34 AC 98 ms
26,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1791.cc:  No.1791 Repeat Multiplication - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 1500000;

/* typedef */

typedef long long ll;

/* global variables */

ll dp[MAX_N + 1], dps[MAX_N + 1];

/* subroutines */

/* main */

int main() {
  int n, qn;
  scanf("%d%d", &n, &qn);

  dp[1] = dps[1] = 1;
  for (int i = 1; i * 2 <= n; i++)
    for (int j = 2; i * j <= n; j++) dp[i * j] += dp[i];
  for (int i = 1; i <= n; i++) dps[i] = dps[i - 1] + dp[i];

  while (qn--) {
    int xi;
    scanf("%d", &xi);

    ll v = dp[xi] * dps[n / xi];
    printf("%lld\n", v);
  }

  return 0;
}
0