結果

問題 No.139 交差点
ユーザー htensaihtensai
提出日時 2020-02-14 15:41:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-10-06 07:58:11
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,160 KB
testcase_01 AC 129 ms
53,896 KB
testcase_02 AC 133 ms
53,852 KB
testcase_03 AC 122 ms
53,164 KB
testcase_04 AC 137 ms
54,212 KB
testcase_05 AC 138 ms
54,228 KB
testcase_06 AC 130 ms
53,908 KB
testcase_07 AC 130 ms
54,500 KB
testcase_08 AC 133 ms
54,448 KB
testcase_09 AC 123 ms
54,372 KB
testcase_10 AC 147 ms
54,068 KB
testcase_11 AC 122 ms
54,032 KB
testcase_12 AC 147 ms
54,304 KB
testcase_13 AC 122 ms
53,832 KB
testcase_14 AC 147 ms
54,164 KB
testcase_15 AC 149 ms
54,244 KB
testcase_16 WA -
testcase_17 AC 127 ms
53,912 KB
testcase_18 AC 131 ms
54,236 KB
testcase_19 AC 142 ms
54,456 KB
testcase_20 AC 137 ms
53,784 KB
testcase_21 AC 112 ms
54,524 KB
testcase_22 AC 121 ms
54,032 KB
testcase_23 AC 148 ms
54,036 KB
testcase_24 AC 120 ms
53,924 KB
testcase_25 AC 131 ms
53,976 KB
testcase_26 AC 128 ms
54,072 KB
testcase_27 AC 121 ms
53,968 KB
testcase_28 AC 123 ms
54,236 KB
testcase_29 AC 131 ms
54,304 KB
testcase_30 AC 136 ms
54,344 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 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();
		    total += x - current;
		    if (total % (2 * t) <= t && (total + w) % (2 * t) <= t) {
		        
		    } else {
		        total += 2 * t - total % (t * 2);
		    }
		    total += w;
		    current = x + w;
		}
		total += l - current;
		System.out.println(total);
    }
}
0