結果

問題 No.456 Millions of Submits!
ユーザー はむこはむこ
提出日時 2016-11-27 22:54:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,689 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 144,556 KB
実行使用メモリ 8,760 KB
最終ジャッジ日時 2023-09-05 04:27:12
合計ジャッジ時間 13,067 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,760 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 4 ms
4,380 KB
testcase_06 AC 3 ms
4,384 KB
testcase_07 AC 24 ms
4,380 KB
testcase_08 AC 23 ms
4,384 KB
testcase_09 AC 220 ms
4,388 KB
testcase_10 AC 220 ms
4,380 KB
testcase_11 AC 2,173 ms
4,380 KB
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 ld = long double; 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

int main(void) {
    int m; scanf("%d", &m);
    double maxerr = -INF;
    rep(i, m) {
        int a, b; scanf("%d%d", &a, &b);
        double t; scanf("%lf", &t);
//        cout << a << " " << b << " " << t << endl;
        if (!a) {
//            cout << "a=0" << endl;
            printf("%.12f\n", exp(pow(t, 1.0 / b)));
            continue;
        }
        if (!b) {
//            cout << "b=0" << endl;
            printf("%.12f\n", pow(t, 1.0 / a));
            continue;
        }

        double rl = 1e-12;
        double rr = 11;
        rep(i, 40) { ld m = (rl + rr) / 2; pow(m, a) * pow(log(m), b) - t > 0?rr=m:rl=m; }
        double n = rl;
        printf("%.12f\n", n);

        double err = pow(n, a) * pow(log(n), b) -  t;
//        cout << err << endl;
    }

    return 0;
}
0