結果
| 問題 |
No.561 東京と京都
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-23 14:40:25 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 214 bytes |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-17 16:28:31 |
| 合計ジャッジ時間 | 1,230 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 17 |
ソースコード
n,d=map(int,input().split())
t,k=map(int,input().split())
ft=t
fk=k-d
for i in range(n-1):
t,k=map(int,input().split())
t_i=max(ft+t,fk-d+t)
k_i=max(ft-d+k,fk+k)
ft=t_i
fk=k_i
print(max(ft,fk))