結果

問題 No.1581 Multiple Sequence
ユーザー KazunKazun
提出日時 2021-07-03 00:03:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2024-06-29 13:33:31
合計ジャッジ時間 8,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,144 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 431 ms
76,068 KB
testcase_03 AC 478 ms
76,484 KB
testcase_04 AC 145 ms
75,904 KB
testcase_05 AC 495 ms
76,168 KB
testcase_06 AC 226 ms
75,848 KB
testcase_07 AC 140 ms
75,788 KB
testcase_08 AC 181 ms
76,256 KB
testcase_09 AC 447 ms
76,516 KB
testcase_10 AC 290 ms
76,104 KB
testcase_11 AC 90 ms
75,924 KB
testcase_12 AC 193 ms
76,220 KB
testcase_13 AC 50 ms
64,128 KB
testcase_14 AC 483 ms
76,272 KB
testcase_15 AC 343 ms
76,304 KB
testcase_16 AC 101 ms
76,240 KB
testcase_17 AC 530 ms
76,736 KB
testcase_18 AC 83 ms
75,776 KB
testcase_19 AC 417 ms
76,480 KB
testcase_20 AC 434 ms
76,196 KB
testcase_21 AC 471 ms
76,264 KB
testcase_22 AC 265 ms
76,136 KB
testcase_23 AC 548 ms
76,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Divisors(N):
    N=abs(N)
    L,U=[],[]
    k=1
    while k*k <=N:
        if N%k== 0:
            L.append(k)
            if k*k!=N:
                U.append(N//k)
        k+=1
    return L+U[::-1]
#==================================================
M=int(input())
Mod=10**9+7

DP=[0]*(M+1)
DP[0]=1

for i in range(1,M+1):
    for j in Divisors(i):
        DP[i]+=DP[i//j-1]
    DP[i]%=Mod

print(DP[M])
0