結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,944 KB
testcase_01 AC 112 ms
52,712 KB
testcase_02 AC 109 ms
53,776 KB
testcase_03 AC 112 ms
53,568 KB
testcase_04 AC 123 ms
53,960 KB
testcase_05 AC 124 ms
53,692 KB
testcase_06 AC 113 ms
53,924 KB
testcase_07 AC 122 ms
53,052 KB
testcase_08 AC 128 ms
53,944 KB
testcase_09 AC 134 ms
54,228 KB
testcase_10 WA -
testcase_11 AC 116 ms
53,616 KB
testcase_12 AC 130 ms
54,020 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
54,124 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 120 ms
54,300 KB
testcase_19 AC 135 ms
53,756 KB
testcase_20 AC 119 ms
54,096 KB
testcase_21 WA -
testcase_22 AC 107 ms
53,468 KB
testcase_23 AC 146 ms
53,848 KB
testcase_24 AC 115 ms
40,256 KB
testcase_25 AC 121 ms
41,368 KB
testcase_26 AC 123 ms
41,236 KB
testcase_27 AC 105 ms
41,248 KB
testcase_28 AC 108 ms
41,504 KB
testcase_29 AC 129 ms
41,548 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