結果

問題 No.1791 Repeat Multiplication
ユーザー NyaanNyaanNyaanNyaan
提出日時 2021-12-20 10:39:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 3,000 ms
コード長 328 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 120,764 KB
最終ジャッジ日時 2024-09-15 15:15:41
合計ジャッジ時間 9,313 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 51 ms
60,672 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 47 ms
58,368 KB
testcase_05 AC 47 ms
58,368 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 47 ms
58,112 KB
testcase_08 AC 104 ms
96,896 KB
testcase_09 AC 99 ms
94,208 KB
testcase_10 AC 98 ms
93,952 KB
testcase_11 AC 94 ms
91,648 KB
testcase_12 AC 92 ms
85,120 KB
testcase_13 AC 315 ms
111,264 KB
testcase_14 AC 323 ms
114,080 KB
testcase_15 AC 241 ms
111,872 KB
testcase_16 AC 239 ms
111,872 KB
testcase_17 AC 356 ms
118,136 KB
testcase_18 AC 280 ms
114,560 KB
testcase_19 AC 326 ms
112,000 KB
testcase_20 AC 248 ms
112,512 KB
testcase_21 AC 305 ms
114,432 KB
testcase_22 AC 324 ms
118,840 KB
testcase_23 AC 239 ms
113,280 KB
testcase_24 AC 313 ms
113,132 KB
testcase_25 AC 283 ms
115,712 KB
testcase_26 AC 313 ms
115,184 KB
testcase_27 AC 263 ms
114,304 KB
testcase_28 AC 320 ms
120,756 KB
testcase_29 AC 335 ms
120,392 KB
testcase_30 AC 339 ms
120,764 KB
testcase_31 AC 41 ms
51,968 KB
testcase_32 AC 318 ms
120,384 KB
testcase_33 AC 325 ms
120,508 KB
testcase_34 AC 316 ms
120,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

dp = [0] * (N + 1)
dp[1] = 1
for i in range(1, N + 1):
  for j in range(i + i, N + 1, i):
    dp[j] += dp[i]
rui = [0] * (N + 1)
for i in range(1, N + 1):
  rui[i] = rui[i - 1] + dp[i]

import sys
qs = list(map(int, sys.stdin.read().split()))
print(*[dp[x] * rui[N // x]for x in qs], sep='\n')
0