結果

問題 No.1791 Repeat Multiplication
ユーザー ripityripity
提出日時 2021-11-21 15:56:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 3,000 ms
コード長 306 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-09-15 14:52:33
合計ジャッジ時間 14,083 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
52,328 KB
testcase_02 AC 50 ms
60,672 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 49 ms
59,520 KB
testcase_05 AC 51 ms
60,288 KB
testcase_06 AC 41 ms
53,120 KB
testcase_07 AC 49 ms
59,520 KB
testcase_08 AC 284 ms
78,208 KB
testcase_09 AC 265 ms
78,516 KB
testcase_10 AC 260 ms
78,464 KB
testcase_11 AC 246 ms
78,236 KB
testcase_12 AC 182 ms
77,824 KB
testcase_13 AC 448 ms
98,048 KB
testcase_14 AC 474 ms
98,944 KB
testcase_15 AC 418 ms
93,312 KB
testcase_16 AC 423 ms
93,184 KB
testcase_17 AC 490 ms
99,584 KB
testcase_18 AC 444 ms
95,744 KB
testcase_19 AC 471 ms
97,792 KB
testcase_20 AC 432 ms
93,696 KB
testcase_21 AC 465 ms
97,408 KB
testcase_22 AC 494 ms
99,712 KB
testcase_23 AC 425 ms
94,464 KB
testcase_24 AC 466 ms
98,816 KB
testcase_25 AC 458 ms
97,280 KB
testcase_26 AC 473 ms
99,072 KB
testcase_27 AC 439 ms
94,848 KB
testcase_28 AC 489 ms
101,120 KB
testcase_29 AC 488 ms
100,480 KB
testcase_30 AC 497 ms
100,608 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 525 ms
100,608 KB
testcase_33 AC 520 ms
101,120 KB
testcase_34 AC 501 ms
100,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N,Q = map(int,input().split())
dp = [0]*(N+1);
sum = [0]*(N+1)
dp[1] = 1;
for i in range(1,N+1):
    sum[i] = dp[i]+sum[i-1]
    for j in range(2,N+1):
        if i*j > N:
            break
        dp[i*j] += dp[i]

for i in range(Q):
    x = int(input())
    print(dp[x]*sum[math.floor(N/x)])
0