結果

問題 No.139 交差点
ユーザー htensaihtensai
提出日時 2020-02-14 15:44:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-10-06 07:58:25
合計ジャッジ時間 6,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,036 KB
testcase_01 AC 119 ms
40,968 KB
testcase_02 AC 110 ms
41,436 KB
testcase_03 AC 125 ms
40,880 KB
testcase_04 AC 129 ms
41,076 KB
testcase_05 AC 138 ms
41,452 KB
testcase_06 AC 123 ms
41,384 KB
testcase_07 AC 139 ms
41,564 KB
testcase_08 AC 134 ms
41,668 KB
testcase_09 AC 134 ms
41,524 KB
testcase_10 AC 140 ms
41,564 KB
testcase_11 AC 114 ms
40,148 KB
testcase_12 AC 151 ms
41,568 KB
testcase_13 AC 118 ms
40,052 KB
testcase_14 AC 132 ms
41,460 KB
testcase_15 AC 140 ms
41,352 KB
testcase_16 AC 123 ms
41,280 KB
testcase_17 AC 139 ms
41,156 KB
testcase_18 AC 132 ms
41,264 KB
testcase_19 AC 147 ms
41,548 KB
testcase_20 AC 129 ms
41,188 KB
testcase_21 AC 110 ms
41,408 KB
testcase_22 AC 119 ms
41,024 KB
testcase_23 AC 152 ms
41,632 KB
testcase_24 AC 119 ms
41,012 KB
testcase_25 AC 132 ms
41,372 KB
testcase_26 AC 129 ms
41,560 KB
testcase_27 AC 124 ms
41,308 KB
testcase_28 AC 125 ms
41,076 KB
testcase_29 AC 131 ms
41,436 KB
testcase_30 AC 128 ms
41,316 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