結果
問題 | No.561 東京と京都 |
ユーザー | tenten |
提出日時 | 2020-09-07 23:05:03 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 147 ms / 2,000 ms |
コード長 | 517 bytes |
コンパイル時間 | 4,406 ms |
コンパイル使用メモリ | 84,072 KB |
実行使用メモリ | 42,032 KB |
最終ジャッジ日時 | 2024-11-29 11:31:00 |
合計ジャッジ時間 | 6,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int d = sc.nextInt(); int prevT = sc.nextInt(); int prevK = sc.nextInt() - d; for (int i = 1; i < n; i++) { int nextT = sc.nextInt() + Math.max(prevT, prevK - d); int nextK = sc.nextInt() + Math.max(prevT - d, prevK); prevT = nextT; prevK = nextK; } System.out.println(Math.max(prevT, prevK)); } }