結果

問題 No.30 たこやき工場
ユーザー mkawa2mkawa2
提出日時 2020-01-06 12:48:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 543 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 75,680 KB
最終ジャッジ日時 2024-05-02 10:49:21
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,888 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 37 ms
53,240 KB
testcase_04 AC 37 ms
53,812 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 38 ms
53,504 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 88 ms
75,680 KB
testcase_09 AC 40 ms
54,144 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from collections import *
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())

def main():
    def dfs(i, c=1):
        if not to[i]:
            ans[i] += c
            return
        for j, q in to[i]:
            dfs(j, c * q)
        return

    n = II()
    m = II()
    to = defaultdict(list)
    for _ in range(m):
        p, q, r = MI()
        to[r - 1].append([p - 1, q])
    ans = [0] * n
    dfs(n - 1)
    print(*ans[:-1], sep="\n")

main()
0