結果
問題 | No.1980 [Cherry 4th Tune D] 停止距離 |
ユーザー | milanis48663220 |
提出日時 | 2022-06-17 21:38:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 323 ms / 3,000 ms |
コード長 | 1,981 bytes |
コンパイル時間 | 1,191 ms |
コンパイル使用メモリ | 120,008 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 07:12:09 |
合計ジャッジ時間 | 11,389 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 57 ms
5,248 KB |
testcase_02 | AC | 236 ms
5,248 KB |
testcase_03 | AC | 155 ms
5,248 KB |
testcase_04 | AC | 40 ms
5,248 KB |
testcase_05 | AC | 199 ms
5,248 KB |
testcase_06 | AC | 323 ms
5,248 KB |
testcase_07 | AC | 323 ms
5,248 KB |
testcase_08 | AC | 322 ms
5,248 KB |
testcase_09 | AC | 310 ms
5,248 KB |
testcase_10 | AC | 313 ms
5,248 KB |
testcase_11 | AC | 319 ms
5,248 KB |
testcase_12 | AC | 318 ms
5,248 KB |
testcase_13 | AC | 315 ms
5,248 KB |
testcase_14 | AC | 320 ms
5,248 KB |
testcase_15 | AC | 316 ms
5,248 KB |
testcase_16 | AC | 320 ms
5,248 KB |
testcase_17 | AC | 319 ms
5,248 KB |
testcase_18 | AC | 320 ms
5,248 KB |
testcase_19 | AC | 317 ms
5,248 KB |
testcase_20 | AC | 316 ms
5,248 KB |
testcase_21 | AC | 314 ms
5,248 KB |
testcase_22 | AC | 322 ms
5,248 KB |
testcase_23 | AC | 311 ms
5,248 KB |
testcase_24 | AC | 318 ms
5,248 KB |
testcase_25 | AC | 321 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
ソースコード
#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(); }