結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,988 KB
testcase_01 AC 47 ms
58,516 KB
testcase_02 AC 48 ms
58,252 KB
testcase_03 AC 48 ms
58,696 KB
testcase_04 AC 48 ms
58,312 KB
testcase_05 AC 52 ms
58,976 KB
testcase_06 AC 51 ms
57,460 KB
testcase_07 AC 49 ms
58,928 KB
testcase_08 AC 53 ms
58,292 KB
testcase_09 AC 48 ms
59,040 KB
testcase_10 AC 48 ms
58,032 KB
testcase_11 AC 47 ms
57,632 KB
testcase_12 AC 56 ms
57,704 KB
testcase_13 AC 50 ms
59,912 KB
testcase_14 AC 50 ms
59,888 KB
testcase_15 AC 48 ms
58,588 KB
testcase_16 AC 48 ms
58,312 KB
testcase_17 AC 48 ms
59,128 KB
testcase_18 AC 47 ms
57,944 KB
testcase_19 AC 50 ms
57,768 KB
testcase_20 AC 50 ms
58,372 KB
testcase_21 AC 53 ms
57,860 KB
testcase_22 AC 53 ms
58,520 KB
testcase_23 AC 55 ms
58,112 KB
testcase_24 AC 48 ms
57,588 KB
testcase_25 AC 52 ms
58,916 KB
testcase_26 AC 52 ms
58,968 KB
testcase_27 AC 53 ms
58,848 KB
testcase_28 AC 54 ms
58,736 KB
testcase_29 AC 55 ms
58,676 KB
testcase_30 AC 56 ms
58,020 KB
testcase_31 AC 54 ms
58,200 KB
testcase_32 WA -
testcase_33 AC 53 ms
58,572 KB
testcase_34 WA -
testcase_35 AC 51 ms
58,476 KB
testcase_36 AC 49 ms
58,672 KB
testcase_37 AC 48 ms
58,204 KB
testcase_38 AC 50 ms
59,884 KB
testcase_39 AC 48 ms
59,476 KB
testcase_40 AC 47 ms
58,040 KB
testcase_41 AC 48 ms
58,244 KB
testcase_42 AC 48 ms
59,164 KB
testcase_43 AC 49 ms
57,644 KB
testcase_44 AC 48 ms
59,208 KB
testcase_45 AC 48 ms
58,664 KB
testcase_46 AC 47 ms
57,520 KB
testcase_47 AC 47 ms
58,616 KB
testcase_48 AC 52 ms
59,024 KB
testcase_49 AC 48 ms
59,072 KB
testcase_50 AC 56 ms
57,568 KB
testcase_51 AC 56 ms
58,516 KB
testcase_52 AC 53 ms
58,052 KB
testcase_53 AC 49 ms
58,520 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:
    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