結果
| 問題 | No.561 東京と京都 |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2024-04-16 19:09:37 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 21 ms / 2,000 ms |
| + 123µs | |
| コード長 | 249 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 15,360 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-11 16:42:33 |
| 合計ジャッジ時間 | 2,029 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 17 |
ソースコード
import sys
input = sys.stdin.readline
N,D=map(int,input().split())
DP=[0,-10**100]
for i in range(N):
NDP=[0,0]
t,k=map(int,input().split())
NDP[0]=max(DP[0]+t,DP[1]+t-D)
NDP[1]=max(DP[1]+k,DP[0]+k-D)
DP=NDP
print(max(DP))
titia