結果

問題 No.139 交差点
ユーザー uafr_csuafr_cs
提出日時 2015-08-17 04:04:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,398 bytes
コンパイル時間 2,656 ms
コンパイル使用メモリ 78,448 KB
実行使用メモリ 56,296 KB
最終ジャッジ日時 2024-07-18 09:58:15
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,576 KB
testcase_01 AC 103 ms
53,140 KB
testcase_02 AC 99 ms
52,780 KB
testcase_03 AC 112 ms
53,804 KB
testcase_04 AC 120 ms
53,956 KB
testcase_05 AC 120 ms
54,008 KB
testcase_06 AC 118 ms
53,796 KB
testcase_07 AC 141 ms
53,976 KB
testcase_08 AC 129 ms
54,640 KB
testcase_09 AC 134 ms
54,056 KB
testcase_10 WA -
testcase_11 AC 111 ms
52,768 KB
testcase_12 AC 151 ms
54,428 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 139 ms
54,068 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 124 ms
54,048 KB
testcase_19 AC 131 ms
54,348 KB
testcase_20 AC 121 ms
53,880 KB
testcase_21 AC 96 ms
52,340 KB
testcase_22 AC 98 ms
52,860 KB
testcase_23 AC 130 ms
54,176 KB
testcase_24 AC 105 ms
52,852 KB
testcase_25 AC 124 ms
53,972 KB
testcase_26 AC 122 ms
54,256 KB
testcase_27 AC 117 ms
53,988 KB
testcase_28 AC 120 ms
54,036 KB
testcase_29 AC 134 ms
53,988 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final long L = sc.nextLong();
		
		int[] xs = new int[N];
		int[] ws = new int[N];
		long[] Ts = new long[N];
		
		for(int i = 0; i < N; i++){
			final int x = sc.nextInt();
			final int w = sc.nextInt();
			final long T = sc.nextLong();
			
			xs[i] = x;
			ws[i] = w;
			Ts[i] = T;
		}
		
		int time = 0;
		int pos = 0;
		for(int i = 0; i < N; i++){
			final int arrival_time = time + (xs[i] - pos);
			final int throught_time = arrival_time + ws[i];
			
			if(arrival_time % (2 * Ts[i]) >= Ts[i]){
				final int arrival_wait_time = (int) ((arrival_time + (2 * Ts[i]) - 1) / (2 * Ts[i]) * (2 * Ts[i]));
				time = arrival_wait_time + ws[i];
			}else if(throught_time % (2 * Ts[i]) >= Ts[i]){
				//System.out.println(throught_time);
				final int arrival_wait_time = (int) ((arrival_time + (2 * Ts[i]) - 1) / (2 * Ts[i]) * (2 * Ts[i]));
				//System.out.println(arrival_wait_time);
				time = arrival_wait_time + ws[i];
			}else{
				time = throught_time;
			}
			
			pos = xs[i] + ws[i];
		}
		time += L - (xs[N - 1] + ws[N - 1]);
		
		
		System.out.println(time);
	}
	
}
0