結果

問題 No.561 東京と京都
ユーザー kusagame12kusagame12
提出日時 2024-06-10 18:41:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-10 18:41:43
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,876 KB
testcase_01 AC 114 ms
54,064 KB
testcase_02 AC 97 ms
52,848 KB
testcase_03 AC 113 ms
53,852 KB
testcase_04 AC 102 ms
52,848 KB
testcase_05 AC 114 ms
53,660 KB
testcase_06 WA -
testcase_07 AC 115 ms
53,952 KB
testcase_08 AC 100 ms
52,508 KB
testcase_09 AC 111 ms
53,132 KB
testcase_10 AC 117 ms
54,184 KB
testcase_11 AC 134 ms
54,284 KB
testcase_12 AC 126 ms
54,096 KB
testcase_13 AC 127 ms
53,780 KB
testcase_14 AC 137 ms
54,340 KB
testcase_15 AC 130 ms
54,160 KB
testcase_16 AC 131 ms
53,996 KB
testcase_17 AC 123 ms
54,352 KB
testcase_18 AC 125 ms
54,192 KB
testcase_19 AC 131 ms
54,048 KB
testcase_20 AC 140 ms
53,876 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;
        }
        
        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