結果
問題 | No.456 Millions of Submits! |
ユーザー | butsurizuki |
提出日時 | 2016-12-09 07:51:41 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,462 ms / 4,500 ms |
コード長 | 680 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 25,088 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-06-26 03:14:25 |
合計ジャッジ時間 | 9,291 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
10,240 KB |
testcase_01 | AC | 7 ms
10,368 KB |
testcase_02 | AC | 7 ms
10,240 KB |
testcase_03 | AC | 7 ms
10,240 KB |
testcase_04 | AC | 7 ms
10,240 KB |
testcase_05 | AC | 7 ms
10,240 KB |
testcase_06 | AC | 9 ms
10,240 KB |
testcase_07 | AC | 10 ms
10,240 KB |
testcase_08 | AC | 9 ms
10,368 KB |
testcase_09 | AC | 32 ms
10,240 KB |
testcase_10 | AC | 33 ms
10,240 KB |
testcase_11 | AC | 256 ms
10,240 KB |
testcase_12 | AC | 2,462 ms
10,240 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d",&n); | ^~~~~~~~~~~~~~ main.c:12:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d%lf",&a,&b,&t); | ^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<math.h> #define e 2.7182818284590452355 double big(double a,double b){if(a>b){return a;}return b;} int main(void){ int i,j,k,n,a,b; double min,max,c,t,ax,bx,r[1048576]; scanf("%d",&n); for(i = 1;i <= n;i++){ scanf("%d%d%lf",&a,&b,&t); if(a && b){min = 1;max = big(e,t);} else if(b == 0){ax = a;r[i] = pow(t,1/ax);continue;} else{bx = b;r[i] = pow(e,pow(t,1/bx));continue;} for(j = 1;j <= 32;j++){ c = (min+max)/2; ax = 1;bx = 1; for(k = 1;k <= a;k++){ax*=c;} for(k = 1;k <= b;k++){bx*=log(c);} if(ax*bx < t){min = c;}else{max = c;} } r[i] = (max+min)/2; } for(i = 1;i <= n;i++){printf("%.12lf\n",r[i]);} return 0; }