結果

問題 No.2798 Multiple Chain
ユーザー ああいいああいい
提出日時 2024-06-29 13:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-06-29 13:59:44
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,344 KB
testcase_01 AC 51 ms
57,984 KB
testcase_02 AC 52 ms
57,984 KB
testcase_03 AC 49 ms
57,600 KB
testcase_04 AC 49 ms
58,112 KB
testcase_05 AC 51 ms
58,240 KB
testcase_06 AC 48 ms
57,600 KB
testcase_07 AC 51 ms
57,856 KB
testcase_08 AC 47 ms
57,600 KB
testcase_09 AC 48 ms
57,472 KB
testcase_10 AC 49 ms
58,240 KB
testcase_11 AC 57 ms
58,240 KB
testcase_12 AC 55 ms
57,472 KB
testcase_13 AC 51 ms
59,136 KB
testcase_14 AC 53 ms
59,104 KB
testcase_15 AC 49 ms
57,472 KB
testcase_16 AC 48 ms
57,728 KB
testcase_17 AC 52 ms
57,600 KB
testcase_18 AC 52 ms
57,856 KB
testcase_19 AC 49 ms
58,112 KB
testcase_20 AC 48 ms
57,856 KB
testcase_21 AC 47 ms
57,728 KB
testcase_22 AC 46 ms
57,984 KB
testcase_23 AC 47 ms
57,728 KB
testcase_24 AC 47 ms
57,728 KB
testcase_25 AC 49 ms
58,112 KB
testcase_26 AC 50 ms
57,728 KB
testcase_27 AC 49 ms
57,728 KB
testcase_28 AC 50 ms
57,600 KB
testcase_29 AC 49 ms
57,856 KB
testcase_30 AC 49 ms
57,984 KB
testcase_31 AC 48 ms
57,716 KB
testcase_32 AC 72 ms
57,856 KB
testcase_33 AC 51 ms
58,112 KB
testcase_34 AC 52 ms
57,728 KB
testcase_35 AC 52 ms
57,920 KB
testcase_36 AC 51 ms
57,600 KB
testcase_37 AC 53 ms
57,856 KB
testcase_38 AC 51 ms
58,108 KB
testcase_39 AC 51 ms
57,600 KB
testcase_40 AC 51 ms
57,728 KB
testcase_41 AC 49 ms
57,984 KB
testcase_42 AC 48 ms
57,472 KB
testcase_43 AC 48 ms
58,240 KB
testcase_44 AC 48 ms
57,984 KB
testcase_45 AC 48 ms
57,632 KB
testcase_46 AC 49 ms
57,600 KB
testcase_47 AC 51 ms
57,472 KB
testcase_48 AC 50 ms
58,112 KB
testcase_49 AC 52 ms
57,600 KB
testcase_50 AC 47 ms
57,728 KB
testcase_51 AC 57 ms
57,984 KB
testcase_52 AC 54 ms
57,984 KB
testcase_53 AC 52 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

C = 10 ** 6 + 5
l = []
for i in range(2,C):
    if N % i == 0:
        count = 0
        while N % i == 0:
            count += 1
            N //= i
        l.append(count)
if N > 1:
    end = N
    start = 1
    while end - start > 1:
        mid = end + start >> 1
        if mid * mid <= N:
            start = mid
        else:
            end = mid
    if start * start == N:
        l.append(2)
    else:
        l.append(1)
        
T = max(l)
dp = [[0] * (T + 1) for _ in range(T + 1)]
for i in range(1,T + 1):
    dp[i][i] = 1
for i in range(1,T):
    for j in range(1,T + 1):
        for u in range(j,T - j + 1):
            if i + u > T:break
            dp[i + u][u] += dp[i][j]
ans = 1
for i in l:
    tmp = 0
    for j in range(T + 1):
        tmp += dp[i][j]
    ans *= tmp
print(ans)
0