結果

問題 No.1791 Repeat Multiplication
ユーザー ああいいああいい
提出日時 2022-02-26 10:36:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 3,000 ms
コード長 314 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 100,068 KB
最終ジャッジ日時 2024-07-04 06:35:20
合計ジャッジ時間 13,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 38 ms
52,128 KB
testcase_02 AC 48 ms
61,628 KB
testcase_03 AC 38 ms
52,600 KB
testcase_04 AC 49 ms
60,648 KB
testcase_05 AC 47 ms
60,484 KB
testcase_06 AC 39 ms
54,920 KB
testcase_07 AC 43 ms
53,928 KB
testcase_08 AC 279 ms
78,552 KB
testcase_09 AC 258 ms
78,208 KB
testcase_10 AC 260 ms
78,620 KB
testcase_11 AC 240 ms
78,336 KB
testcase_12 AC 175 ms
77,664 KB
testcase_13 AC 441 ms
98,468 KB
testcase_14 AC 466 ms
98,564 KB
testcase_15 AC 393 ms
92,688 KB
testcase_16 AC 385 ms
92,344 KB
testcase_17 AC 459 ms
99,448 KB
testcase_18 AC 413 ms
94,632 KB
testcase_19 AC 453 ms
97,712 KB
testcase_20 AC 401 ms
93,284 KB
testcase_21 AC 433 ms
97,984 KB
testcase_22 AC 470 ms
99,520 KB
testcase_23 AC 403 ms
93,480 KB
testcase_24 AC 465 ms
98,328 KB
testcase_25 AC 419 ms
97,164 KB
testcase_26 AC 456 ms
98,932 KB
testcase_27 AC 410 ms
94,900 KB
testcase_28 AC 458 ms
99,804 KB
testcase_29 AC 487 ms
100,068 KB
testcase_30 AC 467 ms
99,912 KB
testcase_31 AC 37 ms
52,892 KB
testcase_32 AC 467 ms
99,896 KB
testcase_33 AC 470 ms
100,004 KB
testcase_34 AC 474 ms
100,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [1] * (N+1)

for i in range(2,N+1):
    for j in range(i*2,N+1,i):
        dp[j] += dp[i]
_sum = [0] * (N+1)
for i in range(1,N+1):
    _sum[i] = _sum[i-1] + dp[i]
    
for _ in range(Q):
    x = int(input())
    ans = 0
    q = N // x
    ans = dp[x] * _sum[q]
    print(ans)
0