結果

問題 No.1581 Multiple Sequence
ユーザー ああいいああいい
提出日時 2021-12-26 10:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 63,172 KB
最終ジャッジ日時 2024-09-22 17:45:01
合計ジャッジ時間 6,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,112 KB
testcase_01 AC 36 ms
51,760 KB
testcase_02 AC 318 ms
62,160 KB
testcase_03 AC 347 ms
62,040 KB
testcase_04 AC 108 ms
61,440 KB
testcase_05 AC 363 ms
62,880 KB
testcase_06 AC 168 ms
61,492 KB
testcase_07 AC 105 ms
60,848 KB
testcase_08 AC 135 ms
61,736 KB
testcase_09 AC 331 ms
61,500 KB
testcase_10 AC 218 ms
62,712 KB
testcase_11 AC 71 ms
62,224 KB
testcase_12 AC 144 ms
61,028 KB
testcase_13 AC 45 ms
61,248 KB
testcase_14 AC 349 ms
62,656 KB
testcase_15 AC 253 ms
61,404 KB
testcase_16 AC 79 ms
60,220 KB
testcase_17 AC 388 ms
63,172 KB
testcase_18 AC 64 ms
60,316 KB
testcase_19 AC 305 ms
62,336 KB
testcase_20 AC 318 ms
62,216 KB
testcase_21 AC 346 ms
61,652 KB
testcase_22 AC 197 ms
61,820 KB
testcase_23 AC 402 ms
62,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
P = 10 ** 9 + 7
f = [-1] * (M + 1)
f[1] = 1
f[0] = 1
for i in range(2,M+1):
    ans = 0
    j = 1
    while j * j <= i:
        if i % j == 0:
            ans = (ans + f[i//j-1]) % P
            if j != i // j:
                ans =(ans + f[j-1]) % P
        j += 1
    f[i] = ans % P
print(f[M])
0