結果

問題 No.30 たこやき工場
ユーザー zimphazimpha
提出日時 2017-12-12 00:34:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-05-08 00:04:31
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 41 ms
52,992 KB
testcase_09 AC 40 ms
53,120 KB
testcase_10 AC 66 ms
70,912 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = int(input())
edges = [[] for i in range(n)]
in_d = [0] * n
out_d = [0] * n
for i in range(m):
  p, r, q = list(map(int, input().split()))
  p -= 1
  q -= 1
  in_d[p] += 1
  out_d[q] += 1
  edges[q].append((p, r))
dp = [0] * n
queue = [n - 1]
dp[-1] = 1
while len(queue):
  u = queue.pop(0)
  for v, r in edges[u]:
    in_d[v] -= 1
    dp[v] += dp[u] * r
    if in_d[v] == 0:
      queue.append(v)
for i, c in enumerate(out_d):
  if c: dp[i] = 0
for x in dp[:n-1]:
  print(x)
0