結果

問題 No.30 たこやき工場
ユーザー convexineqconvexineq
提出日時 2021-01-15 09:00:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 61,116 KB
最終ジャッジ日時 2024-05-04 00:43:13
合計ジャッジ時間 1,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 47 ms
51,712 KB
testcase_05 AC 44 ms
51,584 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 43 ms
51,584 KB
testcase_08 AC 43 ms
52,224 KB
testcase_09 AC 44 ms
52,352 KB
testcase_10 AC 55 ms
61,116 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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