結果

問題 No.1042 愚直大学
ユーザー tunnytunny
提出日時 2020-05-01 23:08:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 891 bytes
コンパイル時間 1,666 ms
コンパイル使用メモリ 165,452 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-12-25 14:13:09
合計ジャッジ時間 29,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 55 ms
8,448 KB
testcase_03 AC 2 ms
10,624 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,624 KB
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 2 ms
10,148 KB
testcase_09 AC 1 ms
8,576 KB
testcase_10 AC 2 ms
8,576 KB
testcase_11 AC 2 ms
10,148 KB
testcase_12 AC 3 ms
8,448 KB
testcase_13 TLE -
testcase_14 AC 2 ms
8,448 KB
testcase_15 AC 2 ms
10,276 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,a,b) for(int i=int(a);i<=int(b);++i)
using namespace std;
template<class A>void pr(A a){cout << (a) << endl;}
template<class A,class B>void pr(A a,B b){cout << a << " "  ;pr(b);}
template<class A,class B,class C>void pr(A a,B b,C c){cout << a << " " ;pr(b,c);}
template<class A,class B,class C,class D>void pr(A a,B b,C c,D d){cout << a << " " ;pr(b,c,d);}
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
int INF=numeric_limits<int>::max();
// for(int j=0;j<N;++j) {
double func(double x, ll p, ll q) {
  return x*x-q*x*log2(x)-1.0*p;
}

double dfunc(double x, ll q) {
  return 2.0*x-q*(log2(x)+1.0/log(2))-1.0;
}

int main(void) {
  ll p,q;cin>> p >> q;
  double x = 100*q + p;
  while(abs(func(x,p,q))>0.000001) {
    x = x - func(x,p,q) / dfunc(x,q);
    // printf("%8.8f\n", x);
  }
  printf("%.8f\n", x);
  return 0;
}
0