結果

問題 No.139 交差点
ユーザー fiord
提出日時 2015-07-06 23:37:10
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 54,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 01:23:37
合計ジャッジ時間 1,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
	int n,l;	cin>>n>>l;
	int now=0,time=0;
	int x,w,t;
	for(int i=0;i<n;i++){
		cin>>x>>w>>t;
		time+=(x-now);
		now=x;
		int next=(time/(2*t))*2*t;
		if(next+t<time+w)	time=next+2*t;
	}
	time+=(l-now);
	cout<<time<<endl;
	return 0;
}
0