結果

問題 No.30 たこやき工場
ユーザー kohei2019kohei2019
提出日時 2021-02-12 16:53:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 70,164 KB
最終ジャッジ日時 2024-06-01 03:06:04
合計ジャッジ時間 1,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,220 KB
testcase_01 AC 39 ms
53,140 KB
testcase_02 AC 40 ms
53,000 KB
testcase_03 AC 40 ms
52,348 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 38 ms
52,852 KB
testcase_06 AC 38 ms
52,568 KB
testcase_07 AC 37 ms
52,068 KB
testcase_08 AC 40 ms
53,140 KB
testcase_09 AC 43 ms
53,432 KB
testcase_10 AC 66 ms
70,164 KB
testcase_11 AC 42 ms
54,024 KB
testcase_12 AC 40 ms
52,376 KB
testcase_13 AC 41 ms
52,732 KB
testcase_14 AC 57 ms
66,192 KB
testcase_15 AC 44 ms
54,796 KB
testcase_16 AC 57 ms
67,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
lsg = [[] for i in range(N)]
root = [True]*(N)
for i in range(M):
    p,q,r = map(int,input().split())
    p -= 1
    r -= 1
    lsg[p].append((r,q))
    root[r] = False
dp = [0]*(N)
dp[N-1] = 1
def dfs(k):
    if k == N-1:
        return 1
    if dp[k] != 0:
        return dp[k]
    cnt = 0
    for node,cost in lsg[k]:
        cnt += cost*dfs(node)
    dp[k] = cnt
    return cnt
for j in range(N-1):
    if root[j]:
        print(dfs(j))
    else:
        print(0)
0