結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,708 KB
testcase_01 AC 98 ms
53,072 KB
testcase_02 AC 102 ms
53,020 KB
testcase_03 AC 102 ms
52,828 KB
testcase_04 AC 126 ms
54,324 KB
testcase_05 AC 120 ms
54,060 KB
testcase_06 AC 113 ms
53,500 KB
testcase_07 AC 123 ms
53,940 KB
testcase_08 AC 120 ms
53,812 KB
testcase_09 AC 124 ms
53,668 KB
testcase_10 WA -
testcase_11 AC 112 ms
53,540 KB
testcase_12 AC 143 ms
54,384 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 140 ms
54,136 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 115 ms
54,168 KB
testcase_19 AC 116 ms
53,244 KB
testcase_20 AC 115 ms
54,180 KB
testcase_21 WA -
testcase_22 AC 99 ms
52,872 KB
testcase_23 AC 127 ms
54,268 KB
testcase_24 AC 116 ms
53,892 KB
testcase_25 AC 135 ms
54,388 KB
testcase_26 AC 113 ms
54,192 KB
testcase_27 AC 119 ms
53,880 KB
testcase_28 AC 120 ms
52,892 KB
testcase_29 AC 135 ms
54,016 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) ((throught_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