結果

問題 No.1791 Repeat Multiplication
ユーザー ripityripity
提出日時 2021-11-27 17:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 495 ms / 3,000 ms
コード長 282 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-09-15 14:53:44
合計ジャッジ時間 13,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 49 ms
60,544 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 48 ms
59,392 KB
testcase_05 AC 49 ms
60,032 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 47 ms
59,488 KB
testcase_08 AC 285 ms
78,080 KB
testcase_09 AC 260 ms
78,456 KB
testcase_10 AC 260 ms
77,968 KB
testcase_11 AC 245 ms
78,208 KB
testcase_12 AC 182 ms
77,812 KB
testcase_13 AC 458 ms
98,232 KB
testcase_14 AC 466 ms
98,432 KB
testcase_15 AC 419 ms
93,056 KB
testcase_16 AC 420 ms
92,800 KB
testcase_17 AC 488 ms
99,072 KB
testcase_18 AC 442 ms
94,720 KB
testcase_19 AC 466 ms
97,664 KB
testcase_20 AC 424 ms
93,568 KB
testcase_21 AC 463 ms
97,152 KB
testcase_22 AC 474 ms
99,328 KB
testcase_23 AC 428 ms
93,696 KB
testcase_24 AC 468 ms
98,048 KB
testcase_25 AC 454 ms
96,768 KB
testcase_26 AC 478 ms
98,560 KB
testcase_27 AC 436 ms
94,720 KB
testcase_28 AC 478 ms
100,736 KB
testcase_29 AC 479 ms
100,608 KB
testcase_30 AC 477 ms
100,480 KB
testcase_31 AC 39 ms
51,456 KB
testcase_32 AC 495 ms
100,992 KB
testcase_33 AC 480 ms
100,736 KB
testcase_34 AC 480 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[N//x])
0