結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー kuraraberukuraraberu
提出日時 2022-06-17 21:54:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,051 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 166,728 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 07:43:55
合計ジャッジ時間 20,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 127 ms
5,248 KB
testcase_02 AC 521 ms
5,248 KB
testcase_03 AC 354 ms
5,248 KB
testcase_04 AC 91 ms
5,248 KB
testcase_05 AC 445 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 697 ms
5,248 KB
testcase_08 AC 706 ms
5,248 KB
testcase_09 AC 710 ms
5,248 KB
testcase_10 WA -
testcase_11 AC 710 ms
5,248 KB
testcase_12 AC 725 ms
5,248 KB
testcase_13 AC 711 ms
5,248 KB
testcase_14 AC 703 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 734 ms
5,248 KB
testcase_17 AC 753 ms
5,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 728 ms
5,248 KB
testcase_22 AC 743 ms
5,248 KB
testcase_23 AC 749 ms
5,248 KB
testcase_24 WA -
testcase_25 AC 731 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;

// aよりもbが大きいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmax(T &a, const T& b) {
  if (a < b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}
// aよりもbが小さいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmin(T &a, const T& b) {
  if (a > b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}

double V(double T,double u,double L){
    double s=0;
    s=-10*u*T+sqrt((10*u*T)*(10*u*T)+20*u*L);
    return s;
}

int main(){
    int N;
    cin>>N;
    for(int i=0;i<N;++i){
        double T,u,L;
        cin>>T>>u>>L;
        double ans=0;
        ans=V(T,u,L);
        ans*=60;
        ans*=60;
        ans/=1000;
        // printf("%.2f", ans);
        // printf("\n");

        cout<<fixed<< setprecision(2)<<floor(100 * (ans) ) / 100<<endl;
    }
}
0