結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-22 23:38:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 852,324 KB
最終ジャッジ日時 2024-12-28 08:58:48
合計ジャッジ時間 72,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,712 KB
testcase_01 TLE -
testcase_02 AC 317 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 MLE -
testcase_25 TLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 TLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 TLE -
testcase_36 WA -
testcase_37 MLE -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 432 ms
213,376 KB
testcase_44 AC 168 ms
90,624 KB
testcase_45 MLE -
testcase_46 AC 232 ms
60,416 KB
testcase_47 AC 39 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time

import sys
import io, os
sys.setrecursionlimit(10**9)
input = sys.stdin.buffer.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

mod = 10**9+7

n, m = map(int, input().split())
ind = [[] for i in range(n+1)]
for i in range(m):
    u, v, l, a = map(int, input().split())
    ind[v].append((u, l, a))

dp = [0]*(n+1)
def dfs(v):
    tt = (time() - stime) / 2.2
    if tt >= 1:
        print('INF')
        exit()
    for u, l, a in ind[v]:
        dfs(u)
        dp[v] += (dp[u]+l)*a
        dp[v] %= mod
stime = time()
dfs(n)
#print(dp)
print(dp[n])
0