結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー milanis48663220milanis48663220
提出日時 2022-06-17 21:38:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 342 ms / 3,000 ms
コード長 1,981 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 118,940 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-07-30 11:53:29
合計ジャッジ時間 12,203 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 60 ms
4,384 KB
testcase_02 AC 239 ms
4,380 KB
testcase_03 AC 165 ms
4,380 KB
testcase_04 AC 41 ms
4,384 KB
testcase_05 AC 212 ms
4,380 KB
testcase_06 AC 336 ms
4,380 KB
testcase_07 AC 334 ms
4,388 KB
testcase_08 AC 335 ms
4,380 KB
testcase_09 AC 331 ms
4,384 KB
testcase_10 AC 332 ms
4,384 KB
testcase_11 AC 331 ms
4,388 KB
testcase_12 AC 333 ms
4,380 KB
testcase_13 AC 337 ms
4,380 KB
testcase_14 AC 337 ms
4,384 KB
testcase_15 AC 337 ms
4,380 KB
testcase_16 AC 333 ms
4,384 KB
testcase_17 AC 335 ms
4,380 KB
testcase_18 AC 332 ms
4,384 KB
testcase_19 AC 332 ms
4,380 KB
testcase_20 AC 342 ms
4,380 KB
testcase_21 AC 340 ms
4,380 KB
testcase_22 AC 335 ms
4,384 KB
testcase_23 AC 337 ms
4,384 KB
testcase_24 AC 329 ms
4,384 KB
testcase_25 AC 333 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

ll get_input(){
    string s; cin >> s;
    ll ans = 0;
    for(char c: s){
        if(c == '.') continue;
        ans = ans*10+(c-'0');
    }
    return ans;
}

string format_ll(ll x){
    string rem = to_string(x%100);
    ll v = x/100;
    if(rem.size() == 1) rem = "0"+rem;
    return to_string(v)+"."+rem;
}

void solve(){
    ll t = get_input();
    ll mu = get_input();
    ll l = get_input();
    auto ok = [&](ll v){
        return 360*v*mu*t + 500*v*v <= l*360*360*mu;
    };
    ll lv = 0, rv = 5100*360+1;
    while(rv-lv > 1){
        ll v = (lv+rv)/2;
        if(ok(v)) lv = v;
        else rv = v;
    }
    cout << format_ll(lv) << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int t; cin >> t;
    while(t--) solve();
}
0