結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー otoshigootoshigo
提出日時 2022-06-17 22:08:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 3,000 ms
コード長 1,323 bytes
コンパイル時間 4,821 ms
コンパイル使用メモリ 260,176 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-07-30 12:52:07
合計ジャッジ時間 10,796 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 24 ms
4,376 KB
testcase_02 AC 94 ms
4,376 KB
testcase_03 AC 65 ms
4,380 KB
testcase_04 AC 18 ms
4,376 KB
testcase_05 AC 83 ms
4,384 KB
testcase_06 AC 129 ms
4,380 KB
testcase_07 AC 130 ms
4,384 KB
testcase_08 AC 129 ms
4,376 KB
testcase_09 AC 130 ms
4,376 KB
testcase_10 AC 130 ms
4,384 KB
testcase_11 AC 130 ms
4,380 KB
testcase_12 AC 129 ms
4,380 KB
testcase_13 AC 130 ms
4,380 KB
testcase_14 AC 129 ms
4,376 KB
testcase_15 AC 129 ms
4,380 KB
testcase_16 AC 128 ms
4,376 KB
testcase_17 AC 125 ms
4,380 KB
testcase_18 AC 126 ms
4,376 KB
testcase_19 AC 128 ms
4,376 KB
testcase_20 AC 130 ms
4,380 KB
testcase_21 AC 129 ms
4,380 KB
testcase_22 AC 128 ms
4,380 KB
testcase_23 AC 127 ms
4,380 KB
testcase_24 AC 128 ms
4,380 KB
testcase_25 AC 129 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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);
    scanf("%d",&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