結果

問題 No.1581 Multiple Sequence
ユーザー tassei903tassei903
提出日時 2021-07-02 22:34:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-29 12:25:43
合計ジャッジ時間 8,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 45 ms
52,480 KB
testcase_02 AC 441 ms
76,672 KB
testcase_03 AC 483 ms
76,544 KB
testcase_04 AC 155 ms
76,160 KB
testcase_05 AC 505 ms
76,544 KB
testcase_06 AC 236 ms
76,160 KB
testcase_07 AC 158 ms
76,160 KB
testcase_08 AC 192 ms
76,032 KB
testcase_09 AC 456 ms
76,416 KB
testcase_10 AC 304 ms
76,544 KB
testcase_11 AC 104 ms
75,776 KB
testcase_12 AC 203 ms
76,160 KB
testcase_13 AC 58 ms
64,128 KB
testcase_14 AC 496 ms
76,416 KB
testcase_15 AC 350 ms
76,416 KB
testcase_16 AC 114 ms
76,160 KB
testcase_17 AC 543 ms
76,672 KB
testcase_18 AC 95 ms
75,904 KB
testcase_19 AC 424 ms
76,928 KB
testcase_20 AC 447 ms
76,544 KB
testcase_21 AC 482 ms
76,672 KB
testcase_22 AC 280 ms
76,544 KB
testcase_23 AC 558 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################
p = 10**9+7
m = ni()

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

dp = [0 for i in range(m+1)]
dp[0] = 1
for i in range(1,m+1):
    z = make_divisors(i)
    #print(z)
    for j in z:
        dp[i]+=dp[j-1]
        dp[i]%=p
print(dp[-1])
0