結果

問題 No.844 split game
ユーザー flippergoflippergo
提出日時 2024-10-10 15:28:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-10-10 15:28:12
合計ジャッジ時間 8,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
80,256 KB
testcase_01 AC 116 ms
81,316 KB
testcase_02 AC 183 ms
83,384 KB
testcase_03 AC 168 ms
83,968 KB
testcase_04 AC 117 ms
80,128 KB
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 AC 199 ms
87,544 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 198 ms
87,256 KB
testcase_19 WA -
testcase_20 AC 197 ms
87,424 KB
testcase_21 AC 208 ms
87,204 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 70 ms
71,552 KB
testcase_27 WA -
testcase_28 AC 59 ms
65,792 KB
testcase_29 AC 86 ms
77,568 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 66 ms
69,760 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 97 ms
76,472 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 107 ms
78,336 KB
testcase_39 AC 157 ms
80,952 KB
testcase_40 AC 100 ms
79,472 KB
testcase_41 AC 36 ms
52,352 KB
testcase_42 AC 38 ms
52,352 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 37 ms
51,968 KB
testcase_45 AC 37 ms
52,096 KB
testcase_46 AC 41 ms
51,968 KB
testcase_47 AC 36 ms
52,096 KB
testcase_48 AC 36 ms
51,712 KB
testcase_49 AC 36 ms
52,096 KB
testcase_50 AC 37 ms
52,096 KB
testcase_51 AC 47 ms
52,480 KB
testcase_52 AC 36 ms
52,096 KB
testcase_53 WA -
testcase_54 AC 37 ms
52,096 KB
testcase_55 AC 38 ms
52,096 KB
testcase_56 AC 37 ms
51,968 KB
testcase_57 AC 36 ms
52,224 KB
testcase_58 AC 37 ms
52,096 KB
testcase_59 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,a = map(int,input().split())
D = [[] for _ in range(N+1)]
for _ in range(M):
    l,r,p = map(int,input().split())
    D[r].append((l,p))
dp = [0]*(N+1)
for i in range(1,N+1):
    dp[i] = dp[i-1]
    if len(D[i])>0:
        for l,p in D[i]:
            if l==1 or dp[l-1]>dp[l-2]:
                if i<N and p>a:
                    dp[i] = max(dp[i],dp[l-1]+p-a)
                elif i==N:
                    dp[i] = max(dp[i],dp[l-1]+p)
            else:
                if i<N and p>2*a:
                    dp[i] = max(dp[i],dp[l-1]+p-2*a)
                elif i==N and p>a:
                    dp[i] = max(dp[i],dp[l-1]+p-a)
print(dp[N])
0