結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,000 KB
testcase_01 AC 40 ms
52,396 KB
testcase_02 AC 40 ms
53,004 KB
testcase_03 AC 39 ms
52,688 KB
testcase_04 AC 38 ms
53,340 KB
testcase_05 AC 38 ms
53,324 KB
testcase_06 AC 39 ms
52,748 KB
testcase_07 AC 38 ms
52,960 KB
testcase_08 AC 40 ms
53,636 KB
testcase_09 AC 43 ms
54,432 KB
testcase_10 AC 67 ms
70,824 KB
testcase_11 AC 41 ms
54,020 KB
testcase_12 AC 38 ms
53,604 KB
testcase_13 AC 39 ms
53,288 KB
testcase_14 AC 42 ms
54,128 KB
testcase_15 AC 41 ms
55,236 KB
testcase_16 AC 43 ms
54,480 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