結果

問題 No.30 たこやき工場
ユーザー convexineqconvexineq
提出日時 2021-01-15 09:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 61,800 KB
最終ジャッジ日時 2024-06-01 03:05:53
合計ジャッジ時間 1,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,268 KB
testcase_01 AC 40 ms
53,492 KB
testcase_02 AC 38 ms
52,336 KB
testcase_03 AC 38 ms
53,260 KB
testcase_04 AC 38 ms
53,012 KB
testcase_05 AC 38 ms
52,816 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 38 ms
53,460 KB
testcase_08 AC 38 ms
54,172 KB
testcase_09 AC 40 ms
52,976 KB
testcase_10 AC 49 ms
61,800 KB
testcase_11 AC 39 ms
52,528 KB
testcase_12 AC 38 ms
52,668 KB
testcase_13 AC 37 ms
52,456 KB
testcase_14 AC 39 ms
53,872 KB
testcase_15 AC 40 ms
53,928 KB
testcase_16 AC 40 ms
53,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,*P = map(int,open(0).read().split())
g = [[] for _ in range(n)]
ind = [0]*n
for i in range(0,3*m,3):
    g[P[i+2]-1].append((P[i]-1,P[i+1]))
    ind[P[i]-1] += 1
dp = [0]*n
dp[-1] = 1
*q, = [i for i in range(n) if ind[i]==0]
for i in q:
    for c,d in g[i]:
        dp[c] += dp[i]*d
        ind[c] -= 1
        if ind[c]==0: q.append(c)
    if g[i]: dp[i]=0
print(*dp[:-1],sep="\n")
0