結果

問題 No.139 交差点
ユーザー htensaihtensai
提出日時 2020-02-14 15:24:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 56,608 KB
最終ジャッジ日時 2024-10-06 07:57:57
合計ジャッジ時間 6,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,680 KB
testcase_01 AC 106 ms
52,904 KB
testcase_02 AC 111 ms
53,916 KB
testcase_03 AC 110 ms
53,052 KB
testcase_04 AC 118 ms
53,416 KB
testcase_05 AC 130 ms
54,300 KB
testcase_06 AC 121 ms
54,148 KB
testcase_07 AC 131 ms
54,204 KB
testcase_08 AC 136 ms
54,308 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 122 ms
54,036 KB
testcase_14 AC 124 ms
53,644 KB
testcase_15 WA -
testcase_16 AC 133 ms
54,276 KB
testcase_17 WA -
testcase_18 AC 130 ms
54,040 KB
testcase_19 AC 144 ms
54,184 KB
testcase_20 AC 124 ms
54,352 KB
testcase_21 AC 126 ms
53,920 KB
testcase_22 AC 120 ms
54,296 KB
testcase_23 AC 140 ms
54,068 KB
testcase_24 AC 116 ms
53,868 KB
testcase_25 WA -
testcase_26 AC 128 ms
54,208 KB
testcase_27 AC 124 ms
54,140 KB
testcase_28 AC 120 ms
54,300 KB
testcase_29 WA -
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();
		int current = 0;
		long total = 0;
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    int w = sc.nextInt();
		    int t = sc.nextInt();
		    if ((total + x + w - current + t - 1) / t % 2 == 0) {
		        total = (total + x + w - current + t - 1) / t * t;
		        current = x;
		    } else {
		        total += x + w - current;
		        current = x + w;
		    }
		}
		total += l - current;
		System.out.println(total);
    }
}
0