結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,180 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 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,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 1 ms
4,380 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.0000001){
		if(direction==0){//右向き
			touch=w*d/(w+v2);//蜂が右の車にぶつかるまでの距離
			total+=touch;
			d-=(v1+v2)*d/(w+v2);//左右の車が動いた距離を減らす
			direction=1;
		}else if(direction==1){//左向き
			touch=w*d/(w+v1);
			total+=touch;
			d-=(v1+v2)*d/(w+v1);
			direction=0;
		}
	}
	
	printf("%f\n",total);
	
	return 0;
}
0