結果

問題 No.456 Millions of Submits!
ユーザー はむこはむこ
提出日時 2016-11-28 00:08:37
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,520 bytes
コンパイル時間 2,594 ms
コンパイル使用メモリ 143,864 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-05 04:34:01
合計ジャッジ時間 11,808 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,384 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 3 ms
4,380 KB
testcase_05 AC 7 ms
4,380 KB
testcase_06 AC 6 ms
4,380 KB
testcase_07 AC 56 ms
4,380 KB
testcase_08 AC 55 ms
4,376 KB
testcase_09 AC 537 ms
4,380 KB
testcase_10 AC 537 ms
4,384 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(long long i = 0; i < (long long)(n); i++)
#define pb push_back
#define all(x) (x).begin(), (x).end()
template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); }
template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
template <typename T, typename U> ostream &operator<<(ostream &o, const pair<T, U> &v) {  o << "(" << v.first << ", " << v.second << ")"; return o; }
template <typename T> ostream &operator<<(ostream &o, const vector<T> &v) { if (!v.empty()) { o << '['; copy(v.begin(), v.end(), ostream_iterator<T>(o, ", ")); o << "\b\b]"; } return o; }
using ll = long long;  using vll = vector<ll>; using vi = vector<int>;
typedef pair<ll, ll> P;

static const double EPS = 1e-14;
static const long long INF = 1e18;
#define MAX_N 100005

typedef long double Double;

int main(void) {
    int m; scanf("%d", &m);
    rep(i, m) {
        int a, b; scanf("%d%d", &a, &b);
        Double t; scanf("%Lf", &t);
        if (!a) {
            printf("%.12Lf\n", expl(powl(t, 1.0l / b)));
            continue;
        }
        if (!b) {
            printf("%.12Lf\n", powl(t, 1.0l / a));
            continue;
        }

        Double rl = 1e-12;
        Double rr = 11;
        rep(i, 100) { 
            Double m = (rl + rr) / 2.0l;
            (powl(m, a) * powl(log(m), b) - t > 0.0l) ? rr = m : rl = m;
        }
        Double n = rl;
        printf("%.12Lf\n", n);
    }

    return 0;
}
0