結果

問題 No.30 たこやき工場
ユーザー rlangevinrlangevin
提出日時 2023-09-12 08:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 72,168 KB
最終ジャッジ日時 2024-06-29 21:43:05
合計ジャッジ時間 1,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,808 KB
testcase_01 AC 40 ms
54,608 KB
testcase_02 AC 41 ms
54,544 KB
testcase_03 AC 37 ms
53,876 KB
testcase_04 AC 36 ms
55,032 KB
testcase_05 AC 36 ms
53,992 KB
testcase_06 AC 37 ms
55,176 KB
testcase_07 AC 36 ms
54,548 KB
testcase_08 AC 37 ms
55,156 KB
testcase_09 AC 37 ms
55,352 KB
testcase_10 AC 59 ms
72,168 KB
testcase_11 AC 39 ms
55,036 KB
testcase_12 AC 40 ms
54,776 KB
testcase_13 AC 36 ms
55,480 KB
testcase_14 AC 40 ms
55,888 KB
testcase_15 AC 39 ms
57,132 KB
testcase_16 AC 39 ms
56,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
M = int(input())
G = [[] for i in range(N)]
deg = [0] * N
for i in range(M):
    p, q, r = map(int, input().split())
    p, r = p - 1, r - 1
    G[r].append((p, q))
    deg[p] += 1

Q = deque()
for i in range(N):
    if deg[i] == 0:
        Q.append(i)

ans = [0] * N
ans[-1] = 1
while Q:
    u = Q.popleft()
    for v, c in G[u]:
        ans[v] += ans[u] * c
        deg[v] -= 1
        if deg[v] == 0:
            Q.append(v)
            
    if len(G[u]):
        ans[u] = 0

for i in range(N - 1):
    print(ans[i])
0