結果

問題 No.561 東京と京都
ユーザー kusagame12kusagame12
提出日時 2024-06-10 18:37:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-06-10 18:37:59
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,184 KB
testcase_01 AC 105 ms
53,032 KB
testcase_02 AC 106 ms
52,948 KB
testcase_03 AC 114 ms
54,032 KB
testcase_04 AC 116 ms
54,152 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 133 ms
53,980 KB
testcase_09 AC 127 ms
53,984 KB
testcase_10 AC 113 ms
53,032 KB
testcase_11 AC 131 ms
54,192 KB
testcase_12 AC 123 ms
54,144 KB
testcase_13 AC 124 ms
54,020 KB
testcase_14 AC 152 ms
54,184 KB
testcase_15 AC 130 ms
54,048 KB
testcase_16 AC 134 ms
54,472 KB
testcase_17 AC 132 ms
53,892 KB
testcase_18 AC 135 ms
54,032 KB
testcase_19 AC 121 ms
53,708 KB
testcase_20 AC 130 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();

        int d = sc.nextInt();

        int[] t = new int[n];
        int[] k = new int[n];

        for (int i=0; i<n; i++) {
            t[i] = sc.nextInt();
            k[i] = sc.nextInt();
        }

        long t1 = t[0];
        long k1 = k[0]-d;

        long tt = 0l;
        long kk = 0l;
        
        for (int i=1; i<n; i++) {
            
            tt = Math.max(t1 + t[i], k1 - d + t[i]);
            kk = Math.max(k1 + k[i], t1 - d + k[i]);

            t1 = tt;
            k1 = kk;
        }
        
        System.out.println(Math.max(tt,kk));
    }
}






0