結果

問題 No.2318 Phys Bone Maker
ユーザー ynm3nynm3n
提出日時 2023-06-01 02:11:42
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 1,099 bytes
コンパイル時間 16,158 ms
コンパイル使用メモリ 228,600 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-06-08 21:22:44
合計ジャッジ時間 20,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,576 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	m := 998244353
	var n int
	fmt.Scan(&n)

	ps := primeFactorization(n)
	divs := enumDivs(n)
	x := len(divs)

	divPs := make([]map[int]int, x)
	for i, d := range divs {
		divPs[i] = primeFactorization(d)
	}

	dp := make([]int, x)
	dp[0] = 1
	for i := 0; i < x; i++ {
		for j := i + 1; j < x; j++ {
			tmp := dp[i]
			for p := range ps {
				a := divPs[i][p]
				b := divPs[j][p]
				if a > b {
					tmp = 0
					break
				}
				if a == b {
					tmp *= (b + 1)
					if tmp > m {
						tmp %= m
					}
				}
			}
			dp[j] += tmp
			if dp[j] > m {
				dp[j] %= m
			}
		}
	}

	ans := dp[x-1]
	fmt.Println(ans)
}

func primeFactorization(n int) map[int]int {
	m := make(map[int]int)
	for n%2 == 0 {
		n /= 2
		m[2]++
	}
	for i := 3; i*i <= n; i += 2 {
		for n%i == 0 {
			n /= i
			m[i]++
		}
	}
	if n != 1 {
		m[n]++
	}
	return m
}

func enumDivs(n int) []int {
	res := []int{}
	for i := 1; i*i <= n; i++ {
		if n%i > 0 {
			continue
		}
		res = append(res, i)
		if j := n / i; j != i {
			res = append(res, j)
		}
	}
	sort.Ints(res)
	return res
}
0