結果

問題 No.450 ベー君のシャトルラン
ユーザー mono1977mono1977
提出日時 2016-12-01 03:07:10
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 661 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 25,140 KB
実行使用メモリ 7,136 KB
最終ジャッジ日時 2023-08-18 10:51:47
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>

int main(){
	double v1,v2,d,w;
	scanf("%lf %lf %lf %lf",&v1,&v2,&d,&w);
	
	double total=0;
	double touch=0;
	int direction=0;
	
	while(d>0.000001){
		if(direction==0){//右向き
			touch=w*d/(w+v2);//蜂が右の車にぶつかるまでの距離
//			printf("%lf\n",touch);
			total+=touch;
			d-=(v1+v2)*d/(w+v2);//左右の車が動いた距離を減らす
//			printf("total=%lf nokori=%lf\n",total,d);
			direction=1;
		}else{//左向き
			touch=w*d/(w+v1);
//			printf("%lf\n",touch);
			total+=touch;
			d-=(v1+v2)*d/(w+v1);
//			printf("total=%lf nokori=%lf\n",total,d);
			direction=0;
		}
	}
	
	printf("%f\n",total);
	
	return 0;
}
0