結果

問題 No.1791 Repeat Multiplication
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-09 08:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 3,000 ms
コード長 273 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 88,160 KB
最終ジャッジ日時 2024-09-19 16:10:55
合計ジャッジ時間 14,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,840 KB
testcase_01 AC 37 ms
52,432 KB
testcase_02 AC 44 ms
60,452 KB
testcase_03 AC 37 ms
53,044 KB
testcase_04 AC 49 ms
61,432 KB
testcase_05 AC 58 ms
66,748 KB
testcase_06 AC 39 ms
53,600 KB
testcase_07 AC 48 ms
60,816 KB
testcase_08 AC 293 ms
77,356 KB
testcase_09 AC 271 ms
77,444 KB
testcase_10 AC 271 ms
77,244 KB
testcase_11 AC 252 ms
77,140 KB
testcase_12 AC 178 ms
76,756 KB
testcase_13 AC 454 ms
87,264 KB
testcase_14 AC 426 ms
87,276 KB
testcase_15 AC 394 ms
84,592 KB
testcase_16 AC 384 ms
84,116 KB
testcase_17 AC 453 ms
87,908 KB
testcase_18 AC 404 ms
85,736 KB
testcase_19 AC 436 ms
87,164 KB
testcase_20 AC 382 ms
84,664 KB
testcase_21 AC 430 ms
86,888 KB
testcase_22 AC 460 ms
87,988 KB
testcase_23 AC 399 ms
84,880 KB
testcase_24 AC 454 ms
87,300 KB
testcase_25 AC 425 ms
86,456 KB
testcase_26 AC 439 ms
87,836 KB
testcase_27 AC 412 ms
85,644 KB
testcase_28 AC 482 ms
88,160 KB
testcase_29 AC 475 ms
87,796 KB
testcase_30 AC 473 ms
87,908 KB
testcase_31 AC 37 ms
52,280 KB
testcase_32 AC 456 ms
87,924 KB
testcase_33 AC 464 ms
88,056 KB
testcase_34 AC 510 ms
88,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



n,q=map(int,input().split())
dp=[0]*(n+1)
dp[1]=1
for i in range(1,n):
    for k in range(2,10**9):
        if i*k>n:break
        dp[i*k]+=dp[i]
for iii in range(q):
    x=int(input())
    ans=0
    for y in range(x,n+1,x):
        ans+=dp[x]*dp[y//x]
    print(ans)


0