結果

問題 No.30 たこやき工場
ユーザー KudeKude
提出日時 2020-09-05 06:21:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-05-05 12:54:35
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 75 ms
69,632 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = [n - 1]
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