結果

問題 No.139 交差点
ユーザー ぴろずぴろず
提出日時 2015-01-29 23:52:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-06-23 04:16:54
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,192 KB
testcase_01 AC 102 ms
40,368 KB
testcase_02 AC 117 ms
41,420 KB
testcase_03 AC 118 ms
41,164 KB
testcase_04 AC 121 ms
41,172 KB
testcase_05 AC 120 ms
41,376 KB
testcase_06 AC 116 ms
41,144 KB
testcase_07 AC 121 ms
41,760 KB
testcase_08 AC 117 ms
41,052 KB
testcase_09 AC 125 ms
41,560 KB
testcase_10 AC 128 ms
41,316 KB
testcase_11 AC 113 ms
40,948 KB
testcase_12 AC 141 ms
41,676 KB
testcase_13 AC 110 ms
41,396 KB
testcase_14 AC 117 ms
41,172 KB
testcase_15 AC 138 ms
41,652 KB
testcase_16 AC 105 ms
40,904 KB
testcase_17 AC 124 ms
41,456 KB
testcase_18 AC 120 ms
41,496 KB
testcase_19 AC 134 ms
41,560 KB
testcase_20 AC 113 ms
41,364 KB
testcase_21 AC 109 ms
41,120 KB
testcase_22 AC 105 ms
41,248 KB
testcase_23 AC 129 ms
41,628 KB
testcase_24 AC 124 ms
41,260 KB
testcase_25 AC 115 ms
41,332 KB
testcase_26 AC 113 ms
41,096 KB
testcase_27 AC 118 ms
41,368 KB
testcase_28 AC 103 ms
40,384 KB
testcase_29 AC 123 ms
41,652 KB
testcase_30 AC 118 ms
41,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no139;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int l = sc.nextInt();
		int[] x = new int[n+2];
		int[] w = new int[n+2];
		int[] t = new int[n+2];
		x[0] = 0;
		w[0] = 0;
		t[0] = 10;
		for(int i=1;i<=n;i++) {
			x[i] = sc.nextInt();
			w[i] = sc.nextInt();
			t[i] = sc.nextInt();
		}
		x[n+1] = l;
		long time = 0;
		for(int i=0;i<=n;i++) {
			long gap = x[i+1] - x[i];
			long ph0 = time % (t[i] * 2);
			long ph1 = (time + w[i]) % (t[i] * 2);
			if (ph0 <= ph1 && ph1 <= t[i]) {
				time += gap;
			}else{
				time += t[i] * 2 - ph0 + gap;
			}
		}
		System.out.println(time);
	}

}
0