結果

問題 No.844 split game
ユーザー tempura_pptempura_pp
提出日時 2019-03-14 01:01:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 801 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,888 KB
最終ジャッジ日時 2024-06-24 17:27:01
合計ジャッジ時間 17,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
21,248 KB
testcase_01 AC 307 ms
26,112 KB
testcase_02 AC 618 ms
29,440 KB
testcase_03 AC 499 ms
29,568 KB
testcase_04 AC 247 ms
19,712 KB
testcase_05 AC 678 ms
33,920 KB
testcase_06 AC 219 ms
19,072 KB
testcase_07 AC 236 ms
22,784 KB
testcase_08 AC 128 ms
15,744 KB
testcase_09 AC 467 ms
23,552 KB
testcase_10 AC 706 ms
33,152 KB
testcase_11 AC 728 ms
35,840 KB
testcase_12 AC 451 ms
23,168 KB
testcase_13 AC 282 ms
18,816 KB
testcase_14 AC 331 ms
24,192 KB
testcase_15 AC 800 ms
37,760 KB
testcase_16 AC 797 ms
37,760 KB
testcase_17 AC 794 ms
37,760 KB
testcase_18 AC 792 ms
37,760 KB
testcase_19 AC 801 ms
37,632 KB
testcase_20 AC 793 ms
37,760 KB
testcase_21 AC 796 ms
37,888 KB
testcase_22 AC 793 ms
37,760 KB
testcase_23 AC 51 ms
11,776 KB
testcase_24 AC 80 ms
12,928 KB
testcase_25 AC 56 ms
11,648 KB
testcase_26 AC 45 ms
11,520 KB
testcase_27 AC 67 ms
12,032 KB
testcase_28 AC 43 ms
11,776 KB
testcase_29 AC 75 ms
12,672 KB
testcase_30 AC 80 ms
13,184 KB
testcase_31 AC 70 ms
12,160 KB
testcase_32 AC 43 ms
11,776 KB
testcase_33 AC 83 ms
12,160 KB
testcase_34 AC 62 ms
11,520 KB
testcase_35 AC 96 ms
12,288 KB
testcase_36 AC 68 ms
11,776 KB
testcase_37 AC 130 ms
13,312 KB
testcase_38 AC 241 ms
16,384 KB
testcase_39 AC 488 ms
22,144 KB
testcase_40 AC 201 ms
19,328 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 30 ms
10,880 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 30 ms
10,752 KB
testcase_49 AC 30 ms
10,752 KB
testcase_50 AC 31 ms
10,752 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 30 ms
10,752 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 31 ms
10,880 KB
testcase_55 AC 30 ms
10,880 KB
testcase_56 AC 30 ms
10,752 KB
testcase_57 AC 29 ms
10,752 KB
testcase_58 AC 30 ms
10,880 KB
testcase_59 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,a=map(int,input().split())
dp = [0]*(n+1)
edge = [[] for i in range(n)]
for i in range(m) :
    x,y,z=map(int,input().split())
    edge[y-1].append([x-1,z])
ans = 0
for i in range(n) :
    dp[i+1] = ans - a
    for p in edge[i] :
        dp[i+1] = max(dp[i+1], dp[p[0]]+p[1]-(a if i != n-1 else 0))
    ans = max(ans, dp[i+1])
print(ans)
0