結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,272 KB
testcase_01 AC 39 ms
52,764 KB
testcase_02 AC 38 ms
52,000 KB
testcase_03 AC 39 ms
52,220 KB
testcase_04 AC 40 ms
53,880 KB
testcase_05 AC 40 ms
52,068 KB
testcase_06 AC 40 ms
53,408 KB
testcase_07 AC 39 ms
52,612 KB
testcase_08 AC 41 ms
53,084 KB
testcase_09 AC 41 ms
53,796 KB
testcase_10 AC 48 ms
61,972 KB
testcase_11 AC 40 ms
53,740 KB
testcase_12 AC 37 ms
52,072 KB
testcase_13 AC 43 ms
53,536 KB
testcase_14 AC 38 ms
53,012 KB
testcase_15 AC 38 ms
53,636 KB
testcase_16 AC 39 ms
53,012 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