結果

問題 No.30 たこやき工場
ユーザー KudeKude
提出日時 2020-09-05 06:26:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-12-21 05:31:40
合計ジャッジ時間 1,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,008 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 46 ms
51,840 KB
testcase_08 AC 47 ms
52,992 KB
testcase_09 AC 47 ms
52,736 KB
testcase_10 AC 75 ms
69,504 KB
testcase_11 AC 45 ms
52,736 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 46 ms
51,968 KB
testcase_14 AC 47 ms
52,864 KB
testcase_15 AC 45 ms
53,120 KB
testcase_16 AC 49 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = int(input())
to = [[] for _ in range(n)]
indegree = [0] * n
for _ in range(m):
    p, q, r = map(int, input().split())
    p -= 1
    r -= 1
    to[r].append((p, q))
    indegree[p] += 1
ans = [0] * (n - 1)
q = [i for i in range(n) if indegree[i] == 0]
required = [0] * n
required[n - 1] = 1
while q:
    u = q.pop()
    if not to[u]:
        ans[u] = required[u]
    else:
        for v, qv in to[u]:
            required[v] += qv * required[u]
            indegree[v] -= 1
            if indegree[v] == 0:
                q.append(v)
print(*ans, sep='\n')
0