結果

問題 No.2798 Multiple Chain
ユーザー ああいいああいい
提出日時 2024-06-29 13:43:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 60,728 KB
最終ジャッジ日時 2024-06-29 13:44:04
合計ジャッジ時間 4,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
58,912 KB
testcase_01 AC 49 ms
58,432 KB
testcase_02 AC 47 ms
57,932 KB
testcase_03 AC 46 ms
58,932 KB
testcase_04 AC 46 ms
57,504 KB
testcase_05 AC 47 ms
57,916 KB
testcase_06 AC 49 ms
57,912 KB
testcase_07 AC 48 ms
58,772 KB
testcase_08 AC 50 ms
58,600 KB
testcase_09 AC 48 ms
58,356 KB
testcase_10 AC 48 ms
58,288 KB
testcase_11 AC 48 ms
58,652 KB
testcase_12 AC 47 ms
57,760 KB
testcase_13 AC 51 ms
59,712 KB
testcase_14 AC 51 ms
60,728 KB
testcase_15 AC 48 ms
59,236 KB
testcase_16 AC 48 ms
58,384 KB
testcase_17 AC 48 ms
58,092 KB
testcase_18 AC 48 ms
58,264 KB
testcase_19 AC 56 ms
58,300 KB
testcase_20 AC 46 ms
57,704 KB
testcase_21 AC 45 ms
57,452 KB
testcase_22 AC 47 ms
58,364 KB
testcase_23 AC 46 ms
58,388 KB
testcase_24 AC 46 ms
59,388 KB
testcase_25 AC 48 ms
58,584 KB
testcase_26 AC 47 ms
58,048 KB
testcase_27 AC 53 ms
57,976 KB
testcase_28 AC 53 ms
58,896 KB
testcase_29 AC 54 ms
58,592 KB
testcase_30 AC 52 ms
57,788 KB
testcase_31 AC 48 ms
58,392 KB
testcase_32 WA -
testcase_33 AC 49 ms
59,904 KB
testcase_34 WA -
testcase_35 AC 48 ms
58,492 KB
testcase_36 AC 47 ms
57,984 KB
testcase_37 AC 48 ms
57,772 KB
testcase_38 AC 48 ms
59,384 KB
testcase_39 AC 56 ms
58,924 KB
testcase_40 AC 48 ms
57,912 KB
testcase_41 AC 48 ms
59,012 KB
testcase_42 AC 49 ms
57,852 KB
testcase_43 AC 47 ms
58,024 KB
testcase_44 AC 48 ms
57,752 KB
testcase_45 AC 50 ms
57,912 KB
testcase_46 AC 53 ms
57,692 KB
testcase_47 AC 50 ms
58,236 KB
testcase_48 AC 51 ms
58,572 KB
testcase_49 AC 50 ms
58,580 KB
testcase_50 AC 48 ms
58,644 KB
testcase_51 AC 49 ms
58,592 KB
testcase_52 AC 50 ms
58,768 KB
testcase_53 AC 50 ms
58,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

C = 10 ** 6 + 1
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:
    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