結果
問題 | No.456 Millions of Submits! |
ユーザー | akakimidori |
提出日時 | 2017-06-21 11:00:23 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 899 ms / 4,500 ms |
コード長 | 596 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 23,808 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 03:14:54 |
合計ジャッジ時間 | 7,867 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 11 ms
5,376 KB |
testcase_10 | AC | 10 ms
5,376 KB |
testcase_11 | AC | 90 ms
5,376 KB |
testcase_12 | AC | 899 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘run’: main.c:23:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d",&m); | ^~~~~~~~~~~~~~ main.c:28:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 28 | scanf("%d%d%lf",&a,&b,&t); | ^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<math.h> double calc(int a,int b,double t){ if(a==0) return exp(pow(t,(double)1/b)); if(b==0) return pow(t,(double)1/a); double x=log(11); double lt=log(t); int i; for(i=0;i<10;i++){ double ae=a*exp(x); double f=ae+b*x-lt; double g=ae+b; x-=f/g; if(f/g<1e-12) break; } return exp(exp(x)); } void run(void){ int m; scanf("%d",&m); int i; for(i=0;i<m;i++){ int a,b; double t; scanf("%d%d%lf",&a,&b,&t); double ans=calc(a,b,t); printf("%.9lf\n",ans); } return; } int main(void){ run(); return 0; }