結果
問題 | No.456 Millions of Submits! |
ユーザー | 紙ぺーぱー |
提出日時 | 2016-12-08 02:03:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 613 bytes |
コンパイル時間 | 1,934 ms |
コンパイル使用メモリ | 166,288 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 06:31:12 |
合計ジャッジ時間 | 6,662 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> double pp(double x,int k){ double ret = 1.0; while (k) { if ((k & 1) == 1) ret *= x; x *= x; k >>= 1; } return ret; } int main(){ int n,a,b; double t; scanf("%d\n",&n); for(int i=0;i<n;i++){ scanf("%d%d%lf\n",&a,&b,&t); double l=0.0,r=0.0; if(a==0)r=pow(exp(10),1+1.0/b); else r=pow(10,1+1.0/a); for(int k=0;k<50;k++){ double x=(l+r)/2; double u=pp(x,a)*pp(log(x),b); if(u<=t)l=x; else r=x; } printf("%.10lf\n",r); } }