結果

問題 No.450 ベー君のシャトルラン
ユーザー mono1977mono1977
提出日時 2016-12-01 03:17:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 358 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 23,168 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-05 16:20:05
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
10,752 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 0 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 TLE -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%lf %lf %lf %lf",&v1,&v2,&d,&w);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

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