結果

問題 No.2318 Phys Bone Maker
ユーザー yupoohyupooh
提出日時 2023-05-26 22:16:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 3,000 ms
コード長 1,046 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-07 07:18:26
合計ジャッジ時間 10,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 43 ms
52,864 KB
testcase_02 AC 864 ms
78,336 KB
testcase_03 AC 62 ms
58,880 KB
testcase_04 AC 67 ms
58,240 KB
testcase_05 AC 66 ms
58,496 KB
testcase_06 AC 64 ms
58,368 KB
testcase_07 AC 62 ms
62,976 KB
testcase_08 AC 76 ms
62,848 KB
testcase_09 AC 62 ms
58,496 KB
testcase_10 AC 78 ms
58,496 KB
testcase_11 AC 70 ms
58,880 KB
testcase_12 AC 88 ms
62,592 KB
testcase_13 AC 94 ms
65,664 KB
testcase_14 AC 70 ms
58,752 KB
testcase_15 AC 67 ms
58,752 KB
testcase_16 AC 66 ms
58,752 KB
testcase_17 AC 76 ms
59,136 KB
testcase_18 AC 89 ms
63,488 KB
testcase_19 AC 59 ms
58,496 KB
testcase_20 AC 70 ms
58,240 KB
testcase_21 AC 66 ms
58,496 KB
testcase_22 AC 64 ms
58,752 KB
testcase_23 AC 63 ms
58,368 KB
testcase_24 AC 73 ms
58,240 KB
testcase_25 AC 70 ms
58,496 KB
testcase_26 AC 81 ms
62,464 KB
testcase_27 AC 73 ms
58,496 KB
testcase_28 AC 62 ms
58,112 KB
testcase_29 AC 60 ms
58,496 KB
testcase_30 AC 58 ms
58,496 KB
testcase_31 AC 77 ms
59,008 KB
testcase_32 AC 71 ms
58,368 KB
testcase_33 AC 43 ms
52,608 KB
testcase_34 AC 71 ms
59,008 KB
testcase_35 AC 184 ms
77,184 KB
testcase_36 AC 516 ms
77,440 KB
testcase_37 AC 452 ms
77,440 KB
testcase_38 AC 452 ms
77,184 KB
testcase_39 AC 640 ms
77,440 KB
testcase_40 AC 664 ms
77,952 KB
testcase_41 AC 850 ms
78,208 KB
testcase_42 AC 726 ms
77,824 KB
testcase_43 AC 104 ms
67,456 KB
testcase_44 AC 186 ms
76,928 KB
testcase_45 AC 191 ms
76,928 KB
testcase_46 AC 842 ms
77,696 KB
testcase_47 AC 78 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n=int(input())
mod=998244353
l=[]
sn=int(n**0.5)+5
for i in range(1,sn):
  if i*i>n:
    break
  if n%i==0:
    l.append(i)
    if n//i!=i:
      l.append(n//i)
l.sort()
dp=[1]*len(l)
import math
def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr
fac=factorization(n)
f=[]
for i,j in fac:
  f.append(i)
yaku=[[] for _ in range(len(l))]
for i in range(1,len(l)):
  now=l[i]
  for j in f:
    num=0
    while now%j==0:
      num+=1
      now//=j
    yaku[i].append(num)
for i in range(1,len(l)):
  for j in range(i+1,len(l)):
    if l[j]%l[i]==0:
      val=1
      for k in range(len(f)):
        if yaku[i][k]==yaku[j][k]:
          val*=(1+yaku[j][k])
      dp[j]+=(dp[i]*val)
      dp[j]%=mod
print(dp[-1])
0