結果

問題 No.139 交差点
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 15:17:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 736 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 76,792 KB
実行使用メモリ 41,940 KB
最終ジャッジ日時 2024-07-07 17:24:34
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,272 KB
testcase_01 AC 112 ms
41,332 KB
testcase_02 AC 110 ms
40,908 KB
testcase_03 AC 113 ms
41,072 KB
testcase_04 AC 115 ms
41,324 KB
testcase_05 AC 118 ms
41,472 KB
testcase_06 AC 116 ms
41,344 KB
testcase_07 AC 123 ms
41,468 KB
testcase_08 AC 124 ms
41,344 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 111 ms
40,952 KB
testcase_14 AC 121 ms
41,440 KB
testcase_15 WA -
testcase_16 AC 110 ms
41,088 KB
testcase_17 WA -
testcase_18 AC 121 ms
41,800 KB
testcase_19 AC 143 ms
41,940 KB
testcase_20 AC 116 ms
41,696 KB
testcase_21 AC 102 ms
39,952 KB
testcase_22 AC 107 ms
40,952 KB
testcase_23 AC 144 ms
41,936 KB
testcase_24 AC 95 ms
39,508 KB
testcase_25 WA -
testcase_26 AC 117 ms
41,068 KB
testcase_27 AC 107 ms
40,264 KB
testcase_28 AC 113 ms
40,928 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package coder;

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	static int N, L;
	static int[] X, W, T;
	
	public static int solve(){
		int t = 0;
		int d = 0;
		
		for (int i = 0; i < N; i++) {
			t += X[i] - d;
			d = X[i];
			
			int tmp = (t + W[i] - 1) / T[i];
			if(tmp % 2 == 1)
				t = (tmp + 1) * T[i];
			
			t += W[i];
			d += W[i];
		}
		
		t += L - d;
		System.out.println(t);
		return 0;
	}
	
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		
		N = S.nextInt();
		L = S.nextInt();
		
		X = new int[N];
		W = new int[N];
		T = new int[N];
		for (int i = 0; i < N; i++) {
			X[i] = S.nextInt();
			W[i] = S.nextInt();
			T[i] = S.nextInt();
		}
		
		solve();
	}
}
0