結果

問題 No.139 交差点
ユーザー fiordfiord
提出日時 2015-07-04 00:30:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 51,448 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-22 06:02:04
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 WA -
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 WA -
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
		if((time/t)%2==1||((time+w)/t)%2==1){
				time=((time/t)+1)*t;
				if((time/t)%2==1)	time+=t;
		}
		time+=w;
		now+=w;
	}
	time+=(l-now);
	cout<<time<<endl;
	return 0;
}
0