結果

問題 No.450 ベー君のシャトルラン
ユーザー mono1977mono1977
提出日時 2016-12-02 19:33:51
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 22,656 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 17:29:59
合計ジャッジ時間 878 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%lf%lf%lf%lf",&v1,&v2,&d,&w);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(){
	double v1,v2,d,w;
	double t;
	
	scanf("%lf%lf%lf%lf",&v1,&v2,&d,&w);
	
	t=d/(v1+v2);
	
	printf("%lf\n",w*t);
	
	return 0;
	
}
0