結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー otoshigootoshigo
提出日時 2022-06-17 21:58:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,316 bytes
コンパイル時間 4,157 ms
コンパイル使用メモリ 253,640 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 13:51:03
合計ジャッジ時間 8,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < n; i++)
#define rrep(i,n) for (int i = n-1; i >= 0; i--)
#define rep2(i,a,b) for (int i = a; i < b; i++)
#define rrep2(i,a,b) for (int i = a-1; i >= b; i--)
#define rep3(i,a,b,c) for (int i = a; i < b; i+=c)
#define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int n;
ll t1,t2,u1,u2,l1,l2;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>n;
    rep(i,n){
        scanf("%lld.%lld %lld.%lld %lld.%lld",&t1,&t2,&u1,&u2,&l1,&l2);
        ll l=100*l1+l2,u=100*u1+u2,t=100*t1+t2;
        ll ok=0,ng=520000;
        while(ng-ok>1){
            ll mid=(ok+ng)/2;
            if(360*mid*t*u+500*mid*mid<=360*360*l*u)ok=mid;
            else ng=mid;
        }
        if(ok<10)cout<<"0.0"<<ok<<"\n";
        else if(ok<100)cout<<"0."<<ok<<"\n";
        else if(ok%100<10)cout<<ok/100<<".0"<<ok%100<<"\n";
        else cout<<ok/100<<'.'<<ok%100<<"\n";
    }
}
0