結果

問題 No.2318 Phys Bone Maker
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 13:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,325 ms / 3,000 ms
コード長 659 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2024-08-31 13:04:13
合計ジャッジ時間 20,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,184 KB
testcase_01 AC 36 ms
53,492 KB
testcase_02 AC 2,325 ms
76,964 KB
testcase_03 AC 55 ms
60,516 KB
testcase_04 AC 53 ms
59,040 KB
testcase_05 AC 51 ms
58,440 KB
testcase_06 AC 51 ms
58,900 KB
testcase_07 AC 57 ms
65,688 KB
testcase_08 AC 74 ms
68,560 KB
testcase_09 AC 50 ms
59,116 KB
testcase_10 AC 59 ms
60,200 KB
testcase_11 AC 55 ms
62,212 KB
testcase_12 AC 72 ms
67,624 KB
testcase_13 AC 88 ms
72,288 KB
testcase_14 AC 51 ms
59,108 KB
testcase_15 AC 50 ms
59,380 KB
testcase_16 AC 53 ms
59,108 KB
testcase_17 AC 61 ms
60,992 KB
testcase_18 AC 78 ms
68,744 KB
testcase_19 AC 48 ms
58,912 KB
testcase_20 AC 54 ms
59,296 KB
testcase_21 AC 53 ms
59,116 KB
testcase_22 AC 54 ms
60,660 KB
testcase_23 AC 52 ms
58,964 KB
testcase_24 AC 53 ms
60,464 KB
testcase_25 AC 56 ms
60,112 KB
testcase_26 AC 68 ms
65,152 KB
testcase_27 AC 57 ms
59,096 KB
testcase_28 AC 49 ms
58,844 KB
testcase_29 AC 47 ms
59,956 KB
testcase_30 AC 49 ms
59,180 KB
testcase_31 AC 57 ms
59,796 KB
testcase_32 AC 60 ms
60,308 KB
testcase_33 AC 35 ms
52,904 KB
testcase_34 AC 56 ms
62,184 KB
testcase_35 AC 261 ms
74,728 KB
testcase_36 AC 1,013 ms
76,800 KB
testcase_37 AC 1,090 ms
76,576 KB
testcase_38 AC 1,160 ms
76,864 KB
testcase_39 AC 1,493 ms
76,716 KB
testcase_40 AC 1,629 ms
76,692 KB
testcase_41 AC 1,766 ms
76,984 KB
testcase_42 AC 1,910 ms
77,076 KB
testcase_43 AC 90 ms
70,396 KB
testcase_44 AC 595 ms
76,604 KB
testcase_45 AC 517 ms
76,760 KB
testcase_46 AC 2,159 ms
77,668 KB
testcase_47 AC 68 ms
58,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
M=998244353
p1=[]
v=N
i=1
while i*i<=v:
  if v%i==0:
    p1+=[i]
    if (v//i)>i:
      p1+=[v//i]
  i+=1
p1.sort()
d1={v:i for i,v in enumerate(p1)}
p2=[]
v=N
i=2
while i*i<=v:
  if v%i==0:
    p2+=[i]
    while v%i==0:
      v//=i
  i+=1
if v>1:
  p2+=[v]
n=len(p1)
q=[0]*n
q[0]=1
for i in range(n-1):
  for j in range(i+1,n):
    if p1[j]%p1[i]==0:
      a=1
      for p in p2:
        v=p1[i]
        ci=0
        while v%p==0:
          v//=p
          ci+=1
        v=p1[j]
        cj=0
        while v%p==0:
          v//=p
          cj+=1
        if cj<=ci:
          a*=ci+1
          a%=M
      q[j]+=q[i]*a
      q[j]%=M
print(q[-1])
0