結果

問題 No.139 交差点
ユーザー chocoruskchocorusk
提出日時 2020-10-03 12:56:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 77,280 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-07-18 04:19:03
合計ジャッジ時間 6,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,956 KB
testcase_01 AC 118 ms
53,064 KB
testcase_02 AC 122 ms
54,232 KB
testcase_03 AC 131 ms
54,044 KB
testcase_04 AC 131 ms
53,956 KB
testcase_05 AC 133 ms
54,352 KB
testcase_06 AC 130 ms
54,192 KB
testcase_07 AC 141 ms
54,392 KB
testcase_08 AC 140 ms
54,116 KB
testcase_09 AC 140 ms
54,312 KB
testcase_10 AC 155 ms
54,336 KB
testcase_11 AC 123 ms
54,044 KB
testcase_12 AC 149 ms
54,404 KB
testcase_13 AC 110 ms
52,832 KB
testcase_14 AC 127 ms
54,172 KB
testcase_15 AC 149 ms
54,232 KB
testcase_16 AC 108 ms
52,816 KB
testcase_17 AC 133 ms
54,308 KB
testcase_18 AC 134 ms
54,200 KB
testcase_19 AC 150 ms
54,328 KB
testcase_20 AC 134 ms
54,040 KB
testcase_21 AC 122 ms
54,252 KB
testcase_22 AC 126 ms
54,148 KB
testcase_23 AC 154 ms
54,344 KB
testcase_24 AC 119 ms
53,920 KB
testcase_25 AC 131 ms
54,196 KB
testcase_26 AC 120 ms
53,540 KB
testcase_27 AC 115 ms
53,056 KB
testcase_28 AC 125 ms
53,976 KB
testcase_29 AC 129 ms
53,876 KB
testcase_30 AC 123 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		int n=scanner.nextInt();
		int l=scanner.nextInt();
		int[] x=new int[n];
		int[] w=new int[n];
		int[] t=new int[n];
		for(int i=0; i<n; i++) {
			x[i]=scanner.nextInt();
			w[i]=scanner.nextInt();
			t[i]=scanner.nextInt();
		}
		int p=0;
		for(int i=0; i<n; i++) {
			if(i==0) p+=x[i];
			else p+=x[i]-(x[i-1]+w[i-1]);
			if(p/t[i]%2==1) {
				p=(p/t[i]+1)*t[i]+w[i];
			}else {
				int p0=p/t[i]*t[i];
				if(t[i]-(p-p0)<w[i]) {
					p=p0+2*t[i]+w[i];
				}else {
					p+=w[i];
				}
			}
		}
		p+=l-(x[n-1]+w[n-1]);
		out.println(p);
		out.close();
		scanner.close();
	}
}
0