結果

問題 No.1791 Repeat Multiplication
ユーザー ramdosramdos
提出日時 2021-11-28 18:48:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 278 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-09-15 14:55:09
合計ジャッジ時間 13,738 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 47 ms
60,928 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 47 ms
59,264 KB
testcase_05 AC 50 ms
59,776 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 47 ms
59,392 KB
testcase_08 AC 290 ms
78,720 KB
testcase_09 AC 264 ms
78,668 KB
testcase_10 AC 263 ms
78,080 KB
testcase_11 AC 239 ms
78,208 KB
testcase_12 AC 179 ms
77,836 KB
testcase_13 AC 436 ms
97,888 KB
testcase_14 AC 496 ms
98,560 KB
testcase_15 AC 391 ms
93,156 KB
testcase_16 AC 410 ms
92,672 KB
testcase_17 AC 468 ms
99,256 KB
testcase_18 AC 452 ms
94,976 KB
testcase_19 AC 478 ms
97,920 KB
testcase_20 AC 430 ms
93,568 KB
testcase_21 AC 475 ms
97,152 KB
testcase_22 AC 499 ms
99,456 KB
testcase_23 AC 426 ms
93,440 KB
testcase_24 AC 479 ms
98,304 KB
testcase_25 AC 458 ms
96,768 KB
testcase_26 AC 458 ms
98,688 KB
testcase_27 AC 439 ms
94,976 KB
testcase_28 AC 502 ms
100,352 KB
testcase_29 AC 465 ms
100,224 KB
testcase_30 AC 461 ms
100,296 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 AC 493 ms
100,736 KB
testcase_33 AC 468 ms
100,480 KB
testcase_34 AC 497 ms
100,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
dp = [0]*(N+1);
su = [0]*(N+1)
dp[1] = 1;
for i in range(1,N+1):
    su[i] = dp[i]+su[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]*su[N//x])
0