結果

問題 No.1878 union-find の数え上げ
ユーザー 👑 rin204rin204
提出日時 2022-03-18 22:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 91,024 KB
最終ジャッジ日時 2024-10-03 09:42:40
合計ジャッジ時間 2,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
87,552 KB
testcase_01 AC 138 ms
84,784 KB
testcase_02 AC 144 ms
84,608 KB
testcase_03 AC 149 ms
84,864 KB
testcase_04 AC 136 ms
84,752 KB
testcase_05 AC 79 ms
77,952 KB
testcase_06 AC 76 ms
78,208 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 32 ms
51,840 KB
testcase_09 AC 32 ms
51,584 KB
testcase_10 AC 32 ms
52,096 KB
testcase_11 AC 31 ms
52,224 KB
testcase_12 AC 32 ms
51,968 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 104 ms
91,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
edges = [[] for _ in range(n)]
for i in range(1, n):
    p = int(input()) - 1
    edges[p].append(i)
    
dist = [0] * n
stack = [0]
ans = 1
while stack:
    pos = stack.pop()
    for npos in edges[pos]:
        dist[npos] = dist[pos] + 1
        ans *= dist[npos]
        ans %= MOD
        stack.append(npos)
print(ans)
0