結果

問題 No.2318 Phys Bone Maker
ユーザー cleanttedcleantted
提出日時 2023-02-26 02:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,746 ms / 3,000 ms
コード長 1,994 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 93,664 KB
最終ジャッジ日時 2023-10-18 16:56:22
合計ジャッジ時間 25,315 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
91,064 KB
testcase_01 AC 159 ms
91,060 KB
testcase_02 AC 2,552 ms
93,664 KB
testcase_03 AC 167 ms
91,460 KB
testcase_04 AC 168 ms
91,252 KB
testcase_05 AC 172 ms
91,252 KB
testcase_06 AC 170 ms
91,256 KB
testcase_07 AC 174 ms
91,780 KB
testcase_08 AC 179 ms
91,780 KB
testcase_09 AC 167 ms
91,248 KB
testcase_10 AC 174 ms
91,256 KB
testcase_11 AC 176 ms
91,460 KB
testcase_12 AC 183 ms
91,768 KB
testcase_13 AC 186 ms
91,780 KB
testcase_14 AC 174 ms
91,252 KB
testcase_15 AC 169 ms
91,256 KB
testcase_16 AC 172 ms
91,252 KB
testcase_17 AC 175 ms
91,584 KB
testcase_18 AC 184 ms
91,784 KB
testcase_19 AC 165 ms
91,252 KB
testcase_20 AC 171 ms
91,252 KB
testcase_21 AC 170 ms
91,256 KB
testcase_22 AC 170 ms
91,736 KB
testcase_23 AC 168 ms
91,248 KB
testcase_24 AC 172 ms
91,256 KB
testcase_25 AC 173 ms
91,252 KB
testcase_26 AC 183 ms
91,776 KB
testcase_27 AC 173 ms
91,252 KB
testcase_28 AC 165 ms
91,252 KB
testcase_29 AC 165 ms
91,252 KB
testcase_30 AC 164 ms
91,252 KB
testcase_31 AC 177 ms
91,748 KB
testcase_32 AC 173 ms
91,252 KB
testcase_33 AC 160 ms
91,060 KB
testcase_34 AC 172 ms
91,252 KB
testcase_35 AC 398 ms
92,620 KB
testcase_36 AC 1,347 ms
93,144 KB
testcase_37 AC 996 ms
93,132 KB
testcase_38 AC 1,203 ms
93,152 KB
testcase_39 AC 1,888 ms
93,400 KB
testcase_40 AC 1,524 ms
93,368 KB
testcase_41 AC 2,746 ms
93,656 KB
testcase_42 AC 2,230 ms
93,576 KB
testcase_43 AC 188 ms
91,788 KB
testcase_44 AC 330 ms
92,428 KB
testcase_45 AC 320 ms
92,416 KB
testcase_46 AC 1,898 ms
93,380 KB
testcase_47 AC 175 ms
91,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
mod = 998244353
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]


def main():
    N = int(input())

    T = {}
    for n in range(2, int(N ** 0.5) + 1):
        while N % n == 0:
            T[n] = T.get(n, 0) + 1
            N //= n

    if N > 1:
        T[N] = T.get(N, 0) + 1 

    T = list(T.items())
    X = {}
    V = set()

    def f(s, S):
        if len(S) == len(T):
            V.add(s)
            X[s] = (tuple(S))
            return
        
        k, v = T[len(S)] 
        S.append(0)
        for _ in range(v + 1):
            f(s, S)
            s *= k
            S[-1] += 1
        S.pop()
        s //= k ** v
    
    f(1, [])

    N = len(V)
    V = sorted(list(V))
    X = [X[v] for v in V]
    dp = [0] * N
    dp[0] = 1
    for i in range(N):
        for j in range(i + 1, N):
            r = 1
            for x1, x2 in zip(X[i], X[j]):
                if x2 > x1:
                    continue
                elif x2 == x1:
                    r *= x1 + 1
                    r %= mod
                else:
                    break
            else:
                dp[j] += dp[i] * r % mod
                dp[j] %= mod
    
    print(dp[-1])


if __name__ == "__main__":
    main()
0