結果

問題 No.1581 Multiple Sequence
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-02 23:07:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,348 KB
最終ジャッジ日時 2024-06-29 12:56:52
合計ジャッジ時間 15,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
80,848 KB
testcase_01 AC 591 ms
80,836 KB
testcase_02 AC 594 ms
80,716 KB
testcase_03 AC 603 ms
81,092 KB
testcase_04 AC 602 ms
80,840 KB
testcase_05 AC 594 ms
80,840 KB
testcase_06 AC 594 ms
80,840 KB
testcase_07 AC 597 ms
80,712 KB
testcase_08 AC 593 ms
80,708 KB
testcase_09 AC 599 ms
81,220 KB
testcase_10 AC 591 ms
80,968 KB
testcase_11 AC 595 ms
80,840 KB
testcase_12 AC 595 ms
81,096 KB
testcase_13 AC 593 ms
80,576 KB
testcase_14 AC 597 ms
80,712 KB
testcase_15 AC 596 ms
81,348 KB
testcase_16 AC 594 ms
80,712 KB
testcase_17 AC 594 ms
80,976 KB
testcase_18 AC 594 ms
80,836 KB
testcase_19 AC 593 ms
80,580 KB
testcase_20 AC 598 ms
80,576 KB
testcase_21 AC 589 ms
80,720 KB
testcase_22 AC 591 ms
80,964 KB
testcase_23 AC 596 ms
80,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
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]
l = [1]
mod = 10 ** 9 + 7
for i in range(1, 10 ** 5 + 1):
    l.append(sum(l[d - 1] for d in make_divisors(i)) % mod)
print(l[m])
0