結果
問題 | No.561 東京と京都 |
ユーザー | OlderInvestor |
提出日時 | 2017-09-20 21:01:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 754 bytes |
コンパイル時間 | 4,429 ms |
コンパイル使用メモリ | 74,216 KB |
実行使用メモリ | 41,824 KB |
最終ジャッジ日時 | 2024-11-08 09:15:21 |
合計ジャッジ時間 | 8,165 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,152 KB |
testcase_01 | AC | 139 ms
41,204 KB |
testcase_02 | AC | 136 ms
41,252 KB |
testcase_03 | AC | 135 ms
41,444 KB |
testcase_04 | AC | 137 ms
41,452 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 141 ms
41,272 KB |
testcase_09 | AC | 124 ms
40,480 KB |
testcase_10 | AC | 140 ms
41,300 KB |
testcase_11 | AC | 147 ms
41,440 KB |
testcase_12 | AC | 154 ms
41,580 KB |
testcase_13 | AC | 155 ms
41,416 KB |
testcase_14 | AC | 162 ms
41,588 KB |
testcase_15 | AC | 155 ms
41,496 KB |
testcase_16 | AC | 153 ms
41,444 KB |
testcase_17 | AC | 152 ms
41,452 KB |
testcase_18 | AC | 153 ms
41,824 KB |
testcase_19 | AC | 154 ms
41,664 KB |
testcase_20 | AC | 153 ms
41,656 KB |
ソースコード
package yukicoder; import java.util.Scanner; import static java.lang.Math.max; public class No561 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(), d = sc.nextInt(); int t, k, beforeT, beforeK; int resultT = 0, resultK = 0; boolean tokyo = true; beforeT = sc.nextInt(); beforeK = sc.nextInt() - d; for(int i = 0; i < n - 1; i++) { t = sc.nextInt(); k = sc.nextInt(); resultT = t + max(beforeT, beforeK - d); resultK = k + max(beforeK, beforeT - d); beforeT = resultT; beforeK = resultK; } System.out.println(max(resultT, resultK)); } }