結果
問題 | No.450 ベー君のシャトルラン |
ユーザー | mono1977 |
提出日時 | 2016-12-01 03:07:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-05-05 16:18:44 |
合計ジャッジ時間 | 3,956 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,884 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 0 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 0 ms
6,940 KB |
testcase_19 | AC | 0 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 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); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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; }