結果

問題 No.561 東京と京都
ユーザー kusagame12kusagame12
提出日時 2024-06-10 18:46:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-10 18:46:09
合計ジャッジ時間 5,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,028 KB
testcase_01 AC 100 ms
52,772 KB
testcase_02 AC 97 ms
52,844 KB
testcase_03 AC 108 ms
52,652 KB
testcase_04 AC 109 ms
53,112 KB
testcase_05 AC 125 ms
53,844 KB
testcase_06 AC 122 ms
53,240 KB
testcase_07 AC 123 ms
53,924 KB
testcase_08 AC 117 ms
54,224 KB
testcase_09 AC 120 ms
54,212 KB
testcase_10 AC 115 ms
53,944 KB
testcase_11 AC 121 ms
54,160 KB
testcase_12 AC 121 ms
53,768 KB
testcase_13 AC 132 ms
54,248 KB
testcase_14 AC 130 ms
54,056 KB
testcase_15 AC 138 ms
54,248 KB
testcase_16 AC 132 ms
54,224 KB
testcase_17 AC 132 ms
53,944 KB
testcase_18 AC 128 ms
54,160 KB
testcase_19 AC 130 ms
54,168 KB
testcase_20 AC 145 ms
54,264 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;

        if(n <= 1){
            tt = t1;
            kk = k1;
        }
        
        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