結果

問題 No.139 交差点
ユーザー htensaihtensai
提出日時 2019-12-26 12:47:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-10-03 07:58:36
合計ジャッジ時間 6,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,644 KB
testcase_01 AC 101 ms
52,848 KB
testcase_02 AC 113 ms
54,128 KB
testcase_03 AC 114 ms
54,344 KB
testcase_04 AC 124 ms
54,396 KB
testcase_05 AC 117 ms
53,816 KB
testcase_06 AC 99 ms
52,464 KB
testcase_07 AC 127 ms
54,152 KB
testcase_08 AC 124 ms
54,204 KB
testcase_09 AC 117 ms
53,952 KB
testcase_10 WA -
testcase_11 AC 116 ms
54,224 KB
testcase_12 AC 124 ms
54,084 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 143 ms
54,012 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 125 ms
54,136 KB
testcase_19 AC 140 ms
54,280 KB
testcase_20 AC 120 ms
54,128 KB
testcase_21 WA -
testcase_22 AC 115 ms
53,948 KB
testcase_23 AC 148 ms
54,112 KB
testcase_24 AC 119 ms
53,900 KB
testcase_25 AC 126 ms
54,196 KB
testcase_26 AC 127 ms
54,240 KB
testcase_27 AC 124 ms
52,972 KB
testcase_28 AC 123 ms
54,112 KB
testcase_29 AC 130 ms
54,200 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int l = sc.nextInt();
        long total = 0;
        int cur = 0;
        for (int i = 0; i < n; i++) {
            int point = sc.nextInt();
            int width = sc.nextInt();
            int time = sc.nextInt();
            long start = total + point - cur;
            long end = total + point + width - cur;
            if (start / time % 2 == 1 || end / time % 2 == 1 || start / time != end / time) {
                cur = point;
                total = (start / (time * 2) + 1) * time * 2;
            } else {
                cur = point + width;
                total = end;
            }
        }
        total += l - cur;
        System.out.println(total);
    }
}
0