結果

問題 No.1791 Repeat Multiplication
ユーザー yvay5cqeyvay5cqe
提出日時 2022-01-14 15:44:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 3,000 ms
コード長 354 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,208 KB
最終ジャッジ日時 2024-11-19 08:28:31
合計ジャッジ時間 13,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 46 ms
59,776 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 50 ms
60,160 KB
testcase_05 AC 53 ms
61,184 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 48 ms
59,904 KB
testcase_08 AC 302 ms
77,440 KB
testcase_09 AC 280 ms
77,568 KB
testcase_10 AC 275 ms
77,312 KB
testcase_11 AC 267 ms
77,440 KB
testcase_12 AC 192 ms
77,440 KB
testcase_13 AC 472 ms
87,168 KB
testcase_14 AC 471 ms
87,808 KB
testcase_15 AC 415 ms
84,480 KB
testcase_16 AC 396 ms
84,384 KB
testcase_17 AC 457 ms
87,552 KB
testcase_18 AC 430 ms
86,144 KB
testcase_19 AC 456 ms
87,424 KB
testcase_20 AC 419 ms
84,992 KB
testcase_21 AC 426 ms
87,040 KB
testcase_22 AC 459 ms
88,064 KB
testcase_23 AC 425 ms
84,992 KB
testcase_24 AC 456 ms
87,552 KB
testcase_25 AC 448 ms
86,884 KB
testcase_26 AC 437 ms
87,424 KB
testcase_27 AC 425 ms
86,400 KB
testcase_28 AC 451 ms
88,208 KB
testcase_29 AC 492 ms
88,064 KB
testcase_30 AC 470 ms
88,064 KB
testcase_31 AC 40 ms
51,712 KB
testcase_32 AC 461 ms
88,104 KB
testcase_33 AC 470 ms
88,064 KB
testcase_34 AC 468 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


def calc(x):
    base = dp[x]  # x で終わるやつ
    ret = 0
    for y in range(1, N//x+1):
        ret += dp[y] * base

    return ret


for _ in range(Q):
    x = int(input())
    print(calc(x))
0