結果

問題 No.1581 Multiple Sequence
ユーザー Kiri8128Kiri8128
提出日時 2021-07-02 23:12:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 738 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,780 KB
最終ジャッジ日時 2024-06-29 13:01:05
合計ジャッジ時間 7,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 357 ms
84,736 KB
testcase_03 AC 367 ms
85,108 KB
testcase_04 AC 214 ms
80,376 KB
testcase_05 AC 380 ms
85,124 KB
testcase_06 AC 256 ms
81,540 KB
testcase_07 AC 207 ms
79,876 KB
testcase_08 AC 227 ms
80,640 KB
testcase_09 AC 361 ms
85,252 KB
testcase_10 AC 294 ms
82,688 KB
testcase_11 AC 169 ms
80,104 KB
testcase_12 AC 240 ms
81,280 KB
testcase_13 AC 88 ms
77,440 KB
testcase_14 AC 398 ms
85,372 KB
testcase_15 AC 309 ms
83,584 KB
testcase_16 AC 180 ms
79,892 KB
testcase_17 AC 397 ms
85,888 KB
testcase_18 AC 151 ms
78,848 KB
testcase_19 AC 342 ms
84,348 KB
testcase_20 AC 355 ms
84,728 KB
testcase_21 AC 370 ms
84,852 KB
testcase_22 AC 293 ms
82,556 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeFactor(N):
    i, n, ret, d, sq = 2, N, {}, 2, 99
    while i <= sq:
        k = 0
        while n % i == 0: n, k, ret[i] = n//i, k+1, k+1
        if k > 0 or i == 97: sq = int(n**(1/2)+0.5)
        if i < 4: i = i * 2 - 1
        else: i, d = i+d, d^6
    if n > 1: ret[n] = 1
    return ret

def divisors(N):
    pf = primeFactor(N)
    ret = [1]
    for p in pf:
        ret_prev = ret
        ret = []
        for i in range(pf[p]+1):
            for r in ret_prev:
                ret.append(r * (p ** i))
    return sorted(ret)

N = int(input())
X = [0] * 10 ** 5
X[0] = X[1] = 1
for i in range(2, N + 1):
    a = 0
    for d in divisors(i):
        b = i // d - 1
        a += X[b]
    X[i] = a
print(X[N] % (10 ** 9 + 7))
0