結果

問題 No.1791 Repeat Multiplication
ユーザー qibqib
提出日時 2023-01-09 02:25:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 3,000 ms
コード長 352 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-05-09 15:14:42
合計ジャッジ時間 14,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,584 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 55 ms
61,696 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 42 ms
59,392 KB
testcase_05 AC 46 ms
60,032 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 42 ms
58,752 KB
testcase_08 AC 271 ms
78,208 KB
testcase_09 AC 240 ms
77,952 KB
testcase_10 AC 232 ms
78,208 KB
testcase_11 AC 224 ms
77,696 KB
testcase_12 AC 161 ms
77,440 KB
testcase_13 AC 527 ms
98,688 KB
testcase_14 AC 518 ms
98,560 KB
testcase_15 AC 438 ms
92,672 KB
testcase_16 AC 411 ms
92,288 KB
testcase_17 AC 493 ms
98,816 KB
testcase_18 AC 445 ms
94,848 KB
testcase_19 AC 480 ms
98,560 KB
testcase_20 AC 418 ms
94,208 KB
testcase_21 AC 467 ms
97,408 KB
testcase_22 AC 495 ms
99,456 KB
testcase_23 AC 427 ms
93,440 KB
testcase_24 AC 492 ms
98,432 KB
testcase_25 AC 467 ms
96,768 KB
testcase_26 AC 490 ms
98,944 KB
testcase_27 AC 475 ms
94,848 KB
testcase_28 AC 501 ms
100,224 KB
testcase_29 AC 502 ms
99,456 KB
testcase_30 AC 510 ms
99,968 KB
testcase_31 AC 33 ms
51,840 KB
testcase_32 AC 507 ms
99,968 KB
testcase_33 AC 505 ms
99,712 KB
testcase_34 AC 503 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())

dp = [0 for _ in range(n + 1)]
dp[1] = 1
for x in range(2, n + 1):
  dp[x] += 1
  for y in range(2 * x, n + 1, x):
    dp[y] += dp[x]

ans = [0 for _ in range(n + 1)]
for x in range(1, n + 1):
  for y in range(1, n // x + 1):
    ans[x] += dp[y]
  ans[x] *= dp[x]

for _ in range(q):
  x = int(input())
  print(ans[x])
0