結果

問題 No.456 Millions of Submits!
ユーザー 🐬hec🐬hec
提出日時 2016-12-08 01:05:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,338 bytes
コンパイル時間 3,078 ms
コンパイル使用メモリ 163,556 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-05 09:59:10
合計ジャッジ時間 11,224 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

using namespace std;

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

using R=double;
const R eps=1e-9;

// Problem Specific Parameter:

int main(void){
	int m;
	scanf("%d",&m);
	
	rep(loop,m){
		R a,b,t;
		scanf("%lf %lf %lf",&a,&b,&t);

		R ans=0.0;

		if(a<eps){
			R l=1.0,r=t;
			rep(hoge,30){
				R m=(l+r)/2.0;
				if(pow(m,b)<t)
					l=m;
				else
					r=m;
			}
			ans=exp(l);
		}else{
			R l=1.0,r=t;
			rep(hoge,30){
				R m=(l+r)/2.0;
				if(pow(m,a)*pow(log(m),b)<t)
					l=m;
				else
					r=m;
			}
			ans=l;
		}
		printf("%.10f\n",ans);
	}
	return 0;
}
0