結果

問題 No.139 交差点
ユーザー tentententen
提出日時 2020-12-02 08:15:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 707 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 83,544 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-09-13 03:50:39
合計ジャッジ時間 7,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,288 KB
testcase_01 AC 133 ms
54,188 KB
testcase_02 AC 131 ms
54,308 KB
testcase_03 AC 138 ms
54,240 KB
testcase_04 AC 144 ms
54,304 KB
testcase_05 AC 146 ms
53,920 KB
testcase_06 AC 138 ms
54,352 KB
testcase_07 AC 151 ms
54,164 KB
testcase_08 AC 145 ms
53,952 KB
testcase_09 AC 146 ms
54,228 KB
testcase_10 AC 156 ms
54,336 KB
testcase_11 AC 137 ms
54,276 KB
testcase_12 AC 154 ms
54,352 KB
testcase_13 AC 138 ms
53,992 KB
testcase_14 AC 145 ms
54,372 KB
testcase_15 AC 155 ms
54,224 KB
testcase_16 AC 137 ms
54,260 KB
testcase_17 AC 148 ms
54,124 KB
testcase_18 AC 147 ms
54,296 KB
testcase_19 AC 160 ms
54,380 KB
testcase_20 AC 144 ms
53,920 KB
testcase_21 AC 131 ms
53,988 KB
testcase_22 AC 132 ms
54,140 KB
testcase_23 AC 169 ms
54,400 KB
testcase_24 AC 133 ms
54,244 KB
testcase_25 AC 143 ms
54,468 KB
testcase_26 AC 143 ms
54,228 KB
testcase_27 AC 139 ms
54,444 KB
testcase_28 AC 138 ms
54,068 KB
testcase_29 AC 144 ms
54,056 KB
testcase_30 AC 151 ms
54,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int length = sc.nextInt();
        int current = 0;
        int time = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int w = sc.nextInt();
            int t = sc.nextInt();
            time += x - current;
            current = x;
            if (time / t < (time + w - 1) / t || time / t % 2 == 1) {
                time += 2 * t - time % (2 * t);
            }
            time += w;
            current += w;
        }
        time += length - current;
        System.out.println(time);
    }
}
0