QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#362119#8511. Greek Casinoucup-team112#AC ✓17ms7468kbC++2012.1kb2024-03-23 14:13:332024-03-23 14:13:34

Judging History

你现在查看的是最新测评结果

  • [2024-03-23 14:13:34]
  • 评测
  • 测评结果:AC
  • 用时:17ms
  • 内存:7468kb
  • [2024-03-23 14:13:33]
  • 提交

answer


//#define _GLIBCXX_DEBUG

//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
using namespace std;


#ifdef LOCAL
#include <debug_print.hpp>
#define OUT(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define OUT(...) (static_cast<void>(0))
#endif

#define endl '\n'
#define lfs cout<<fixed<<setprecision(15)
#define ALL(a)  (a).begin(),(a).end()
#define ALLR(a)  (a).rbegin(),(a).rend()
#define UNIQUE(a) (a).erase(unique((a).begin(),(a).end()),(a).end())
#define spa << " " <<
#define fi first
#define se second
#define MP make_pair
#define MT make_tuple
#define PB push_back
#define EB emplace_back
#define rep(i,n,m) for(ll i = (n); i < (ll)(m); i++)
#define rrep(i,n,m) for(ll i = (ll)(m) - 1; i >= (ll)(n); i--)
using ll = long long;
using ld = long double;
const ll MOD1 = 1e9+7;
const ll MOD9 = 998244353;
const ll INF = 1e18;
using P = pair<ll, ll>;
template<typename T> using PQ = priority_queue<T>;
template<typename T> using QP = priority_queue<T,vector<T>,greater<T>>;
template<typename T1, typename T2>bool chmin(T1 &a,T2 b){if(a>b){a=b;return true;}else return false;}
template<typename T1, typename T2>bool chmax(T1 &a,T2 b){if(a<b){a=b;return true;}else return false;}
ll median(ll a,ll b, ll c){return a+b+c-max({a,b,c})-min({a,b,c});}
void ans1(bool x){if(x) cout<<"Yes"<<endl;else cout<<"No"<<endl;}
void ans2(bool x){if(x) cout<<"YES"<<endl;else cout<<"NO"<<endl;}
void ans3(bool x){if(x) cout<<"Yay!"<<endl;else cout<<":("<<endl;}
template<typename T1,typename T2>void ans(bool x,T1 y,T2 z){if(x)cout<<y<<endl;else cout<<z<<endl;}  
template<typename T1,typename T2,typename T3>void anss(T1 x,T2 y,T3 z){ans(x!=y,x,z);};  
template<typename T>void debug(const T &v,ll h,ll w,string sv=" "){for(ll i=0;i<h;i++){cout<<v[i][0];for(ll j=1;j<w;j++)cout<<sv<<v[i][j];cout<<endl;}};
template<typename T>void debug(const T &v,ll n,string sv=" "){if(n!=0)cout<<v[0];for(ll i=1;i<n;i++)cout<<sv<<v[i];cout<<endl;};
template<typename T>void debug(const vector<T>&v){debug(v,v.size());}
template<typename T>void debug(const vector<vector<T>>&v){for(auto &vv:v)debug(vv,vv.size());}
template<typename T>void debug(stack<T> st){while(!st.empty()){cout<<st.top()<<" ";st.pop();}cout<<endl;}
template<typename T>void debug(queue<T> st){while(!st.empty()){cout<<st.front()<<" ";st.pop();}cout<<endl;}
template<typename T>void debug(deque<T> st){while(!st.empty()){cout<<st.front()<<" ";st.pop_front();}cout<<endl;}
template<typename T>void debug(PQ<T> st){while(!st.empty()){cout<<st.top()<<" ";st.pop();}cout<<endl;}
template<typename T>void debug(QP<T> st){while(!st.empty()){cout<<st.top()<<" ";st.pop();}cout<<endl;}
template<typename T>void debug(const set<T>&v){for(auto z:v)cout<<z<<" ";cout<<endl;}
template<typename T>void debug(const multiset<T>&v){for(auto z:v)cout<<z<<" ";cout<<endl;}
template<typename T,size_t size>void debug(const array<T, size> &a){for(auto z:a)cout<<z<<" ";cout<<endl;}
template<typename T,typename V>void debug(const map<T,V>&v){for(auto z:v)cout<<"["<<z.first<<"]="<<z.second<<",";cout<<endl;}
template<typename T>vector<vector<T>>vec(ll x, ll y, T w){vector<vector<T>>v(x,vector<T>(y,w));return v;}
vector<ll>dx={1,-1,0,0,1,1,-1,-1};vector<ll>dy={0,0,1,-1,1,-1,1,-1};
template<typename T>vector<T> make_v(size_t a,T b){return vector<T>(a,b);}
template<typename... Ts>auto make_v(size_t a,Ts... ts){return vector<decltype(make_v(ts...))>(a,make_v(ts...));}
template<typename T1, typename T2>ostream &operator<<(ostream &os, const pair<T1, T2>&p){return os << "(" << p.first << "," << p.second << ")";}
template<typename T>ostream &operator<<(ostream &os, const vector<T> &v){os<<"[";for(auto &z:v)os << z << ",";os<<"]"; return os;}
template<typename T>void rearrange(vector<int>&ord, vector<T>&v){
  auto tmp = v;
  for(int i=0;i<tmp.size();i++)v[i] = tmp[ord[i]];
}
template<typename Head, typename... Tail>void rearrange(vector<int>&ord,Head&& head, Tail&&... tail){
  rearrange(ord, head);
  rearrange(ord, tail...);
}
template<typename T> vector<int> ascend(const vector<T>&v){
  vector<int>ord(v.size());iota(ord.begin(),ord.end(),0);
  sort(ord.begin(),ord.end(),[&](int i,int j){return make_pair(v[i],i)<make_pair(v[j],j);});
  return ord;
}
template<typename T> vector<int> descend(const vector<T>&v){
  vector<int>ord(v.size());iota(ord.begin(),ord.end(),0);
  sort(ord.begin(),ord.end(),[&](int i,int j){return make_pair(v[i],-i)>make_pair(v[j],-j);});
  return ord;
}
template<typename T> vector<T> inv_perm(const vector<T>&ord){
  vector<T>inv(ord.size());
  for(int i=0;i<ord.size();i++)inv[ord[i]] = i;
  return inv;
}
ll FLOOR(ll n,ll div){assert(div>0);return n>=0?n/div:(n-div+1)/div;}
ll CEIL(ll n,ll div){assert(div>0);return n>=0?(n+div-1)/div:n/div;}
ll digitsum(ll n){ll ret=0;while(n){ret+=n%10;n/=10;}return ret;}
ll modulo(ll n,ll d){return (n%d+d)%d;};
template<typename T>T min(const vector<T>&v){return *min_element(v.begin(),v.end());}
template<typename T>T max(const vector<T>&v){return *max_element(v.begin(),v.end());}
template<typename T>T acc(const vector<T>&v){return accumulate(v.begin(),v.end(),T(0));};
template<typename T>T reverse(const T &v){return T(v.rbegin(),v.rend());};
//mt19937 mt(chrono::steady_clock::now().time_since_epoch().count());
int popcount(ll x){return __builtin_popcountll(x);};
int poplow(ll x){return __builtin_ctzll(x);};
int pophigh(ll x){return 63 - __builtin_clzll(x);};
template<typename T>T poll(queue<T> &q){auto ret=q.front();q.pop();return ret;};
template<typename T>T poll(priority_queue<T> &q){auto ret=q.top();q.pop();return ret;};
template<typename T>T poll(QP<T> &q){auto ret=q.top();q.pop();return ret;};
template<typename T>T poll(stack<T> &s){auto ret=s.top();s.pop();return ret;};
ll MULT(ll x,ll y){if(LLONG_MAX/x<=y)return LLONG_MAX;return x*y;}
ll POW2(ll x, ll k){ll ret=1,mul=x;while(k){if(mul==LLONG_MAX)return LLONG_MAX;if(k&1)ret=MULT(ret,mul);mul=MULT(mul,mul);k>>=1;}return ret;}
ll POW(ll x, ll k){ll ret=1;for(int i=0;i<k;i++){if(LLONG_MAX/x<=ret)return LLONG_MAX;ret*=x;}return ret;}
std::ostream &operator<<(std::ostream &dest, __int128_t value) {
  std::ostream::sentry s(dest);
  if (s) {
    __uint128_t tmp = value < 0 ? -value : value;
    char buffer[128];
    char *d = std::end(buffer);
    do {
      --d;
      *d = "0123456789"[tmp % 10];
      tmp /= 10;
    } while (tmp != 0);
    if (value < 0) {
      --d;
      *d = '-';
    }
    int len = std::end(buffer) - d;
    if (dest.rdbuf()->sputn(d, len) != len) {
      dest.setstate(std::ios_base::badbit);
    }
  }
  return dest;
}
namespace converter{
  int dict[500];
  const string lower="abcdefghijklmnopqrstuvwxyz";
  const string upper="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  const string digit="0123456789";
  const string digit1="123456789";
  void regi_str(const string &t){
    for(int i=0;i<t.size();i++){
      dict[t[i]]=i;
    }
  }
  void regi_int(const string &t){
    for(int i=0;i<t.size();i++){
      dict[i]=t[i];
    }
  }
  vector<int>to_int(const string &s,const string &t){
    regi_str(t);
    vector<int>ret(s.size());
    for(int i=0;i<s.size();i++){
      ret[i]=dict[s[i]];
    }
    return ret;
  }
  vector<int>to_int(const string &s){
    auto t=s;
    sort(t.begin(),t.end());
    t.erase(unique(t.begin(),t.end()),t.end());
    return to_int(s,t);
  }
  
  vector<vector<int>>to_int(const vector<string>&s,const string &t){
    regi_str(t);
    vector<vector<int>>ret(s.size(),vector<int>(s[0].size()));
    for(int i=0;i<s.size();i++){
      for(int j=0;j<s[0].size();j++){
        ret[i][j]=dict[s[i][j]];
      }
    }
    return ret;
  }
  vector<vector<int>>to_int(const vector<string>&s){
    string t;
    for(int i=0;i<s.size();i++){
      t+=s[i];
    }
    sort(t.begin(),t.end());t.erase(unique(t.begin(),t.end()),t.end());
    return to_int(s,t);
  }
  string to_str(const vector<int>&s,const string &t){
    regi_int(t);
    string ret;
    for(auto z:s)ret+=dict[z];
    return ret;
  }
  vector<string> to_str(const vector<vector<int>>&s,const string &t){
    regi_int(t);
    vector<string>ret(s.size());
    for(int i=0;i<s.size();i++){
      for(auto z:s[i])ret[i]+=dict[z];
    }
    return ret;
  }
}
template< typename T = int >
struct edge {
  int to;
  T cost;
  int id;
  edge():to(-1),id(-1){};
  edge(int to, T cost = 1, int id = -1):to(to), cost(cost), id(id){}
  operator int() const { return to; }
};

template<typename T>
using Graph = vector<vector<edge<T>>>;
template<typename T>
Graph<T>revgraph(const Graph<T> &g){
  Graph<T>ret(g.size());
  for(int i=0;i<g.size();i++){
    for(auto e:g[i]){
      int to = e.to;
      e.to = i;
      ret[to].push_back(e);
    }
  }
  return ret;
}
template<typename T>
Graph<T> readGraph(int n,int m,int indexed=1,bool directed=false,bool weighted=false){
  Graph<T> ret(n);
  for(int es = 0; es < m; es++){
    int u,v;
    T w=1;
    cin>>u>>v;u-=indexed,v-=indexed;
    if(weighted)cin>>w;
    ret[u].emplace_back(v,w,es);
    if(!directed)ret[v].emplace_back(u,w,es);
  }
  return ret;
}
template<typename T>
Graph<T> readParent(int n,int indexed=1,bool directed=true){
  Graph<T>ret(n);
  for(int i=1;i<n;i++){
    int p;cin>>p;
    p-=indexed;
    ret[p].emplace_back(i);
    if(!directed)ret[i].emplace_back(p);
  }
  return ret;
}
struct Sieve{
  int lim;
  vector<bool>sieve;
  Sieve(int lim):lim(lim){
    sieve.assign(lim,false);
    for(int i=2;i<lim;i++){
      if(sieve[i])continue;
      for(int j=i+i;j<lim;j+=i)sieve[j]=true;
    }
  }
  template<typename T>
  vector<T>gcd_zeta(vector<T>&a){
    auto ret=a;
    int n=a.size();
    for(int i=2;i<n;i++){
      if(sieve[i])continue;
      for(int j=(n-1)/i;j>0;j--){
        ret[j]+=ret[j*i];
      }
    }
    return ret;
  }
  template<typename T>
  vector<T>gcd_meb(vector<T>&a){
    auto ret=a;
    int n=a.size();
    for(int i=2;i<n;i++){
      if(sieve[i])continue;
      for(int j=1;i*j<n;j++){
        ret[j]-=ret[j*i];
      }
    }
    return ret;
  }
  template<typename T>
  vector<T>gcd_conv(vector<T>&a,vector<T>&b){
    int n=min(a.size(),b.size());
    vector<T>ret(n);
    auto az=gcd_zeta(a);
    auto bz=gcd_zeta(b);
    for(int i=1;i<n;i++)ret[i]=az[i]*bz[i];
    return gcd_meb(ret);
  }
  template<typename T>
  vector<T>lcm_zeta(vector<T>&a){
    auto ret=a;
    int n=a.size();
    for(int i=2;i<n;i++){
      if(sieve[i])continue;
      for(int j=1;i*j<n;j++){
        ret[j*i]+=ret[j];
      }
    }
    return ret;
  }
  template<typename T>
  vector<T>lcm_meb(vector<T>&a){
    auto ret=a;
    int n=a.size();
    for(int i=2;i<n;i++){
      if(sieve[i])continue;
      for(int j=(n-1)/i;j>0;j--){
        ret[j*i]-=ret[j];
      }
    }
    return ret;
  }
  template<typename T>
  vector<T>lcm_conv(vector<T>&a,vector<T>&b){
    int n=max(a.size(),b.size());
    vector<T>ret(n);
    auto az=lcm_zeta(a);
    auto bz=lcm_zeta(b);
    for(int i=1;i<n;i++)ret[i]=az[i]*bz[i];
    return lcm_meb(ret);
  }
  template<typename T>
  vector<T>uncommon(vector<T>&a,int sz){
    assert(max(a)<sz);
    vector<T>ret(sz);
    ret[1] = 1;
    ret = lcm_meb(ret);
    vector<T>cnt(sz);
    for(int i=0;i<a.size();i++){
      cnt[a[i]]++;
    }
    cnt = gcd_zeta(cnt);
    for(int i=0;i<sz;i++)ret[i] *= cnt[i];
    ret = lcm_zeta(ret);
    return ret;
  }
};

void solve(){
	ll res=0,buf=0;
  bool judge = true;

  ll n;cin>>n;
  vector<ll>w(n+1);
  Sieve siv(100005);
  rep(i,0,n)cin>>w[i+1];
  ll ws=acc(w);
  w=siv.lcm_zeta(w);
  vector<ld>dp(n+1,0);
  rrep(i,1,n+1){
    ll sz=n/i;
    vector<ll>v(sz+1);
    for(ll j=1;j<=sz;j++)v[j]=w[i*j];
    v=siv.lcm_meb(v);
    dp[i]=ld(ws)/(ws-v[1]);
    ld inv=ld(1)/(ws-v[1]);
    for(ll j=2;j<=sz;j++){
      dp[i]+=dp[i*j]*v[j]*inv;
    }
  }
  OUT(dp);
  lfs<<dp[1]-1<<endl;
}

int main(){
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  ll res=0,buf=0;
  bool judge = true;
  int T = 1;
  //cin>>T;
  while(T--){
    solve();
  }
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3872kb

input:

3
1 1 1

output:

3.500000000000000

result:

ok found '3.500000000', expected '3.500000000', error '0.000000000'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3880kb

input:

3
1 1 2

output:

3.666666666666667

result:

ok found '3.666666667', expected '3.666666667', error '0.000000000'

Test #3:

score: 0
Accepted
time: 1ms
memory: 4196kb

input:

1337
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...

output:

1.018336828963221

result:

ok found '1.018336829', expected '1.018336829', error '0.000000000'

Test #4:

score: 0
Accepted
time: 1ms
memory: 4136kb

input:

1337
861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861 861...

output:

1.018336828963221

result:

ok found '1.018336829', expected '1.018336829', error '0.000000000'

Test #5:

score: 0
Accepted
time: 1ms
memory: 3860kb

input:

617
563 870 884 449 280 664 579 166 796 498 462 499 249 972 722 12 819 975 483 313 438 23 964 305 344 166 960 656 735 995 681 759 601 335 602 986 685 609 263 1000 994 932 995 583 15 207 66 743 916 38 46 488 131 821 294 802 100 765 506 20 114 363 79 195 620 986 210 834 739 96 406 217 553 293 250 25 4...

output:

1.038324581148203

result:

ok found '1.038324581', expected '1.038324581', error '0.000000000'

Test #6:

score: 0
Accepted
time: 1ms
memory: 3856kb

input:

326
349 627 220 932 201 751 927 927 52 332 277 553 888 833 260 399 164 932 748 424 33 92 612 140 272 642 164 556 507 250 598 503 892 329 600 242 292 441 165 917 692 220 291 397 946 159 962 168 172 69 669 703 945 183 941 290 96 901 482 369 952 200 155 936 426 76 877 376 621 977 269 969 135 849 383 34...

output:

1.055951133385509

result:

ok found '1.055951133', expected '1.055951133', error '0.000000000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 4088kb

input:

682
66 313 970 647 716 391 469 763 946 85 847 95 941 423 308 195 936 628 556 806 624 205 628 52 408 920 868 761 101 627 315 670 146 840 82 886 918 40 89 449 404 6 158 161 608 714 352 151 444 26 143 659 827 786 908 281 608 138 119 841 632 12 215 166 707 503 112 16 96 572 997 736 716 603 661 247 921 7...

output:

1.029409781785743

result:

ok found '1.029409782', expected '1.029409782', error '0.000000000'

Test #8:

score: 0
Accepted
time: 2ms
memory: 4240kb

input:

7476
642 341 920 309 562 936 963 381 141 343 883 437 578 322 381 173 272 996 190 889 376 207 231 127 916 205 444 371 176 947 803 945 587 889 141 116 207 4 823 317 273 640 208 101 888 614 631 327 998 366 190 327 275 141 601 528 910 169 666 406 905 807 697 562 559 229 489 685 548 522 53 155 243 128 12...

output:

1.004706780437000

result:

ok found '1.004706780', expected '1.004706780', error '0.000000000'

Test #9:

score: 0
Accepted
time: 1ms
memory: 3988kb

input:

1850
95 238 160 577 876 399 513 487 605 683 397 956 938 162 171 905 70 400 639 215 956 643 207 858 280 444 506 507 109 2 556 933 144 291 144 326 219 824 781 544 43 381 20 316 41 255 67 458 940 839 867 401 384 140 641 836 439 600 281 861 637 880 688 102 478 694 996 116 172 918 73 653 610 171 797 822 ...

output:

1.013304766159873

result:

ok found '1.013304766', expected '1.013304766', error '0.000000000'

Test #10:

score: 0
Accepted
time: 1ms
memory: 4224kb

input:

2015
551 951 327 500 390 59 479 805 199 774 266 32 433 299 407 18 958 407 637 417 73 707 723 240 61 272 623 79 385 853 412 733 446 733 381 306 545 492 386 381 701 227 473 246 921 321 503 441 879 423 934 461 496 119 992 502 181 647 85 465 757 615 340 740 964 456 434 279 345 712 930 199 39 665 99 455 ...

output:

1.013163137631026

result:

ok found '1.013163138', expected '1.013163138', error '0.000000000'

Test #11:

score: 0
Accepted
time: 9ms
memory: 5360kb

input:

55766
652 963 239 379 522 881 478 343 788 434 403 104 765 827 746 158 102 309 293 505 998 929 328 340 110 206 908 168 453 635 169 242 66 551 566 358 537 918 465 896 383 849 875 89 500 787 886 67 950 903 328 462 658 654 457 752 13 567 661 490 828 139 967 914 543 74 860 260 792 525 485 583 485 40 340 ...

output:

1.000904186709246

result:

ok found '1.000904187', expected '1.000904187', error '0.000000000'

Test #12:

score: 0
Accepted
time: 10ms
memory: 6276kb

input:

79112
879 443 8 695 661 529 639 157 77 672 986 94 896 817 655 115 838 552 807 838 547 671 935 49 923 996 99 335 107 811 738 450 387 422 510 1 628 889 985 47 42 622 215 772 385 382 976 479 904 187 840 435 507 288 312 846 668 688 724 58 674 364 489 127 588 27 890 501 338 160 882 210 574 88 698 615 47 ...

output:

1.000668346641306

result:

ok found '1.000668347', expected '1.000668347', error '0.000000000'

Test #13:

score: 0
Accepted
time: 3ms
memory: 4204kb

input:

12890
790 49 192 527 391 736 245 1000 599 704 192 74 2 182 414 652 987 930 40 721 884 939 762 452 968 738 880 267 929 957 792 78 869 550 637 760 288 151 149 989 843 420 81 436 206 578 405 367 625 695 227 784 580 750 935 600 389 362 289 942 414 905 47 588 35 20 149 230 260 974 30 214 214 640 384 691 ...

output:

1.002982463544240

result:

ok found '1.002982464', expected '1.002982463', error '0.000000000'

Test #14:

score: 0
Accepted
time: 17ms
memory: 7316kb

input:

100000
559 289 445 745 118 849 723 684 231 79 427 31 871 533 820 808 632 940 610 183 568 952 485 912 443 512 832 535 814 854 672 760 512 685 855 971 928 55 841 217 500 814 264 594 723 416 673 862 615 168 964 837 824 232 382 792 200 534 880 707 860 779 35 705 822 17 393 636 837 480 155 450 768 267 41...

output:

1.000555374705695

result:

ok found '1.000555375', expected '1.000555375', error '0.000000000'

Test #15:

score: 0
Accepted
time: 1ms
memory: 3872kb

input:

4
3 3 3 3

output:

3.666666666666667

result:

ok found '3.666666667', expected '3.666666667', error '0.000000000'

Test #16:

score: 0
Accepted
time: 1ms
memory: 3816kb

input:

5
615 615 615 615 615

output:

2.333333333333333

result:

ok found '2.333333333', expected '2.333333333', error '0.000000000'

Test #17:

score: 0
Accepted
time: 1ms
memory: 3876kb

input:

6
10 10 10 10 10 10

output:

2.800000000000000

result:

ok found '2.800000000', expected '2.800000000', error '0.000000000'

Test #18:

score: 0
Accepted
time: 0ms
memory: 3820kb

input:

7
855 855 855 855 855 855 855

output:

2.150000000000000

result:

ok found '2.150000000', expected '2.150000000', error '0.000000000'

Test #19:

score: 0
Accepted
time: 1ms
memory: 3972kb

input:

8
314 314 314 314 314 314 314 314

output:

2.047619047619048

result:

ok found '2.047619048', expected '2.047619048', error '0.000000000'

Test #20:

score: 0
Accepted
time: 1ms
memory: 3876kb

input:

9
822 822 822 822 822 822 822 822 822

output:

1.850000000000000

result:

ok found '1.850000000', expected '1.850000000', error '0.000000000'

Test #21:

score: 0
Accepted
time: 1ms
memory: 3884kb

input:

10
612 612 612 612 612 612 612 612 612 612

output:

1.817460317460317

result:

ok found '1.817460317', expected '1.817460317', error '0.000000000'

Test #22:

score: 0
Accepted
time: 1ms
memory: 4100kb

input:

12
144 144 144 144 144 144 144 144 144 144 144 144

output:

1.818181818181818

result:

ok found '1.818181818', expected '1.818181818', error '0.000000000'

Test #23:

score: 0
Accepted
time: 1ms
memory: 3876kb

input:

24
698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698 698

output:

1.418192714989054

result:

ok found '1.418192715', expected '1.418192715', error '0.000000000'

Test #24:

score: 0
Accepted
time: 1ms
memory: 3876kb

input:

36
661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661 661

output:

1.300254647313471

result:

ok found '1.300254647', expected '1.300254647', error '0.000000000'

Test #25:

score: 0
Accepted
time: 1ms
memory: 3880kb

input:

48
230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230 230

output:

1.237251357155068

result:

ok found '1.237251357', expected '1.237251357', error '0.000000000'

Test #26:

score: 0
Accepted
time: 1ms
memory: 4108kb

input:

60
121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121

output:

1.202328709080957

result:

ok found '1.202328709', expected '1.202328709', error '0.000000000'

Test #27:

score: 0
Accepted
time: 1ms
memory: 3884kb

input:

120
571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 571 ...

output:

1.118364708927544

result:

ok found '1.118364709', expected '1.118364709', error '0.000000000'

Test #28:

score: 0
Accepted
time: 1ms
memory: 3888kb

input:

180
23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23 23...

output:

1.086563241289484

result:

ok found '1.086563241', expected '1.086563241', error '0.000000000'

Test #29:

score: 0
Accepted
time: 1ms
memory: 4072kb

input:

240
330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 330 ...

output:

1.069625514468543

result:

ok found '1.069625514', expected '1.069625514', error '0.000000000'

Test #30:

score: 0
Accepted
time: 0ms
memory: 3856kb

input:

360
313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 313 ...

output:

1.050894886577148

result:

ok found '1.050894887', expected '1.050894887', error '0.000000000'

Test #31:

score: 0
Accepted
time: 1ms
memory: 3928kb

input:

720
999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 999 ...

output:

1.029803217150024

result:

ok found '1.029803217', expected '1.029803217', error '0.000000000'

Test #32:

score: 0
Accepted
time: 1ms
memory: 4076kb

input:

840
331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 331 ...

output:

1.026473480943493

result:

ok found '1.026473481', expected '1.026473481', error '0.000000000'

Test #33:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

924
665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 665 ...

output:

1.024528088584298

result:

ok found '1.024528089', expected '1.024528089', error '0.000000000'

Test #34:

score: 0
Accepted
time: 1ms
memory: 3964kb

input:

1260
363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363...

output:

1.019270892060944

result:

ok found '1.019270892', expected '1.019270892', error '0.000000000'

Test #35:

score: 0
Accepted
time: 1ms
memory: 4200kb

input:

1606
906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906 906...

output:

1.015863305769430

result:

ok found '1.015863306', expected '1.015863306', error '0.000000000'

Test #36:

score: 0
Accepted
time: 1ms
memory: 3980kb

input:

1680
226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226 226...

output:

1.015356424233436

result:

ok found '1.015356424', expected '1.015356424', error '0.000000000'

Test #37:

score: 0
Accepted
time: 1ms
memory: 4124kb

input:

2520
633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633...

output:

1.011129058962612

result:

ok found '1.011129059', expected '1.011129059', error '0.000000000'

Test #38:

score: 0
Accepted
time: 1ms
memory: 4036kb

input:

2623
361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361 361...

output:

1.010757222411920

result:

ok found '1.010757222', expected '1.010757222', error '0.000000000'

Test #39:

score: 0
Accepted
time: 1ms
memory: 4216kb

input:

3892
876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876 876...

output:

1.007844113657175

result:

ok found '1.007844114', expected '1.007844114', error '0.000000000'

Test #40:

score: 0
Accepted
time: 2ms
memory: 4236kb

input:

4967
632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632 632...

output:

1.006448887902577

result:

ok found '1.006448888', expected '1.006448888', error '0.000000000'

Test #41:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

5040
544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544 544...

output:

1.006381440881284

result:

ok found '1.006381441', expected '1.006381441', error '0.000000000'

Test #42:

score: 0
Accepted
time: 2ms
memory: 4100kb

input:

5347
465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465 465...

output:

1.006076972283352

result:

ok found '1.006076972', expected '1.006076972', error '0.000000000'

Test #43:

score: 0
Accepted
time: 2ms
memory: 4140kb

input:

6246
377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377...

output:

1.005359891713781

result:

ok found '1.005359892', expected '1.005359892', error '0.000000000'

Test #44:

score: 0
Accepted
time: 0ms
memory: 4364kb

input:

7345
845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845 845...

output:

1.004698138610208

result:

ok found '1.004698139', expected '1.004698139', error '0.000000000'

Test #45:

score: 0
Accepted
time: 0ms
memory: 4240kb

input:

7560
216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216...

output:

1.004591803401753

result:

ok found '1.004591803', expected '1.004591803', error '0.000000000'

Test #46:

score: 0
Accepted
time: 2ms
memory: 4496kb

input:

8271
878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878 878...

output:

1.004264539235524

result:

ok found '1.004264539', expected '1.004264539', error '0.000000000'

Test #47:

score: 0
Accepted
time: 2ms
memory: 4380kb

input:

9565
915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915 915...

output:

1.003786836675623

result:

ok found '1.003786837', expected '1.003786837', error '0.000000000'

Test #48:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

10080
120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 12...

output:

1.003631823641428

result:

ok found '1.003631824', expected '1.003631824', error '0.000000000'

Test #49:

score: 0
Accepted
time: 0ms
memory: 4316kb

input:

10963
530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 530 53...

output:

1.003388827770924

result:

ok found '1.003388828', expected '1.003388828', error '0.000000000'

Test #50:

score: 0
Accepted
time: 2ms
memory: 4200kb

input:

11149
718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 718 71...

output:

1.003340504339688

result:

ok found '1.003340504', expected '1.003340504', error '0.000000000'

Test #51:

score: 0
Accepted
time: 3ms
memory: 4204kb

input:

12953
97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 97 ...

output:

1.002954588204562

result:

ok found '1.002954588', expected '1.002954588', error '0.000000000'

Test #52:

score: 0
Accepted
time: 3ms
memory: 4256kb

input:

13679
370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 370 37...

output:

1.002824288527171

result:

ok found '1.002824289', expected '1.002824289', error '0.000000000'

Test #53:

score: 0
Accepted
time: 3ms
memory: 4232kb

input:

14388
727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 727 72...

output:

1.002710323577992

result:

ok found '1.002710324', expected '1.002710324', error '0.000000000'

Test #54:

score: 0
Accepted
time: 3ms
memory: 4260kb

input:

15120
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 ...

output:

1.002602382645167

result:

ok found '1.002602383', expected '1.002602383', error '0.000000000'

Test #55:

score: 0
Accepted
time: 3ms
memory: 4200kb

input:

15562
553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 553 55...

output:

1.002540490201360

result:

ok found '1.002540490', expected '1.002540490', error '0.000000000'

Test #56:

score: 0
Accepted
time: 3ms
memory: 4176kb

input:

16863
292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 29...

output:

1.002377559338373

result:

ok found '1.002377559', expected '1.002377559', error '0.000000000'

Test #57:

score: 0
Accepted
time: 4ms
memory: 4084kb

input:

17967
183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 183 18...

output:

1.002256288874657

result:

ok found '1.002256289', expected '1.002256289', error '0.000000000'

Test #58:

score: 0
Accepted
time: 0ms
memory: 4092kb

input:

18565
160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 160 16...

output:

1.002196347717602

result:

ok found '1.002196348', expected '1.002196348', error '0.000000000'

Test #59:

score: 0
Accepted
time: 4ms
memory: 4248kb

input:

19721
490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 490 49...

output:

1.002088963262833

result:

ok found '1.002088963', expected '1.002088963', error '0.000000000'

Test #60:

score: 0
Accepted
time: 4ms
memory: 4312kb

input:

20160
214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 214 21...

output:

1.002052044989044

result:

ok found '1.002052045', expected '1.002052045', error '0.000000000'

Test #61:

score: 0
Accepted
time: 4ms
memory: 4040kb

input:

20747
919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 919 91...

output:

1.002002601077273

result:

ok found '1.002002601', expected '1.002002601', error '0.000000000'

Test #62:

score: 0
Accepted
time: 4ms
memory: 4116kb

input:

21620
42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 ...

output:

1.001935734248366

result:

ok found '1.001935734', expected '1.001935734', error '0.000000000'

Test #63:

score: 0
Accepted
time: 4ms
memory: 4104kb

input:

22802
223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 223 22...

output:

1.001852609018280

result:

ok found '1.001852609', expected '1.001852609', error '0.000000000'

Test #64:

score: 0
Accepted
time: 4ms
memory: 4176kb

input:

23010
659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 65...

output:

1.001838438871235

result:

ok found '1.001838439', expected '1.001838439', error '0.000000000'

Test #65:

score: 0
Accepted
time: 4ms
memory: 4440kb

input:

24681
396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 396 39...

output:

1.001734164337525

result:

ok found '1.001734164', expected '1.001734164', error '0.000000000'

Test #66:

score: 0
Accepted
time: 4ms
memory: 4508kb

input:

25200
191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 191 19...

output:

1.001705205273080

result:

ok found '1.001705205', expected '1.001705205', error '0.000000000'

Test #67:

score: 0
Accepted
time: 5ms
memory: 4212kb

input:

25822
482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 482 48...

output:

1.001670199293852

result:

ok found '1.001670199', expected '1.001670199', error '0.000000000'

Test #68:

score: 0
Accepted
time: 5ms
memory: 4368kb

input:

26908
796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 796 79...

output:

1.001613868854724

result:

ok found '1.001613869', expected '1.001613869', error '0.000000000'

Test #69:

score: 0
Accepted
time: 5ms
memory: 4308kb

input:

27327
105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 105 10...

output:

1.001593396032600

result:

ok found '1.001593396', expected '1.001593396', error '0.000000000'

Test #70:

score: 0
Accepted
time: 5ms
memory: 4352kb

input:

27720
854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 854 85...

output:

1.001575123728587

result:

ok found '1.001575124', expected '1.001575124', error '0.000000000'

Test #71:

score: 0
Accepted
time: 5ms
memory: 4292kb

input:

28568
351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 35...

output:

1.001535879298342

result:

ok found '1.001535879', expected '1.001535879', error '0.000000000'

Test #72:

score: 0
Accepted
time: 5ms
memory: 4296kb

input:

29192
858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 858 85...

output:

1.001508178901560

result:

ok found '1.001508179', expected '1.001508179', error '0.000000000'

Test #73:

score: 0
Accepted
time: 0ms
memory: 4484kb

input:

30331
489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 489 48...

output:

1.001460804766068

result:

ok found '1.001460805', expected '1.001460805', error '0.000000000'

Test #74:

score: 0
Accepted
time: 5ms
memory: 4668kb

input:

31690
503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 503 50...

output:

1.001408498587807

result:

ok found '1.001408499', expected '1.001408499', error '0.000000000'

Test #75:

score: 0
Accepted
time: 6ms
memory: 4596kb

input:

32276
739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 739 73...

output:

1.001386983277315

result:

ok found '1.001386983', expected '1.001386983', error '0.000000000'

Test #76:

score: 0
Accepted
time: 6ms
memory: 4636kb

input:

33301
25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 ...

output:

1.001351411308532

result:

ok found '1.001351411', expected '1.001351411', error '0.000000000'

Test #77:

score: 0
Accepted
time: 6ms
memory: 4648kb

input:

34886
488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 488 48...

output:

1.001299881775366

result:

ok found '1.001299882', expected '1.001299882', error '0.000000000'

Test #78:

score: 0
Accepted
time: 6ms
memory: 4704kb

input:

35090
429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 429 42...

output:

1.001293349009497

result:

ok found '1.001293349', expected '1.001293349', error '0.000000000'

Test #79:

score: 0
Accepted
time: 6ms
memory: 4620kb

input:

36240
941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 941 94...

output:

1.001259100579413

result:

ok found '1.001259101', expected '1.001259101', error '0.000000000'

Test #80:

score: 0
Accepted
time: 6ms
memory: 4668kb

input:

37714
460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 460 46...

output:

1.001217683572768

result:

ok found '1.001217684', expected '1.001217684', error '0.000000000'

Test #81:

score: 0
Accepted
time: 6ms
memory: 4636kb

input:

38382
44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 ...

output:

1.001200098920764

result:

ok found '1.001200099', expected '1.001200099', error '0.000000000'

Test #82:

score: 0
Accepted
time: 3ms
memory: 4636kb

input:

39087
881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 881 88...

output:

1.001181849369231

result:

ok found '1.001181849', expected '1.001181849', error '0.000000000'

Test #83:

score: 0
Accepted
time: 7ms
memory: 5132kb

input:

40561
432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 432 43...

output:

1.001145771380414

result:

ok found '1.001145771', expected '1.001145771', error '0.000000000'

Test #84:

score: 0
Accepted
time: 7ms
memory: 4964kb

input:

41644
910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 910 91...

output:

1.001120767425636

result:

ok found '1.001120767', expected '1.001120767', error '0.000000000'

Test #85:

score: 0
Accepted
time: 7ms
memory: 4980kb

input:

42608
21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 21 ...

output:

1.001099467121765

result:

ok found '1.001099467', expected '1.001099467', error '0.000000000'

Test #86:

score: 0
Accepted
time: 0ms
memory: 5156kb

input:

43184
413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 413 41...

output:

1.001087205142893

result:

ok found '1.001087205', expected '1.001087205', error '0.000000000'

Test #87:

score: 0
Accepted
time: 7ms
memory: 4944kb

input:

44765
419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 41...

output:

1.001054883209932

result:

ok found '1.001054883', expected '1.001054883', error '0.000000000'

Test #88:

score: 0
Accepted
time: 7ms
memory: 5036kb

input:

45360
355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 35...

output:

1.001043455525968

result:

ok found '1.001043456', expected '1.001043456', error '0.000000000'

Test #89:

score: 0
Accepted
time: 4ms
memory: 5140kb

input:

45627
978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 978 97...

output:

1.001038115752170

result:

ok found '1.001038116', expected '1.001038116', error '0.000000000'

Test #90:

score: 0
Accepted
time: 8ms
memory: 5136kb

input:

46316
715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 715 71...

output:

1.001025096606234

result:

ok found '1.001025097', expected '1.001025097', error '0.000000000'

Test #91:

score: 0
Accepted
time: 8ms
memory: 5068kb

input:

47921
235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 235 23...

output:

1.000996300282044

result:

ok found '1.000996300', expected '1.000996300', error '0.000000000'

Test #92:

score: 0
Accepted
time: 8ms
memory: 5280kb

input:

48890
923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 923 92...

output:

1.000979667454601

result:

ok found '1.000979667', expected '1.000979668', error '0.000000000'

Test #93:

score: 0
Accepted
time: 8ms
memory: 5244kb

input:

49614
746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 746 74...

output:

1.000967705716317

result:

ok found '1.000967706', expected '1.000967706', error '0.000000000'

Test #94:

score: 0
Accepted
time: 8ms
memory: 5316kb

input:

50364
419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 419 41...

output:

1.000955512807705

result:

ok found '1.000955513', expected '1.000955513', error '0.000000000'

Test #95:

score: 0
Accepted
time: 9ms
memory: 5432kb

input:

50400
886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 886 88...

output:

1.000955201206583

result:

ok found '1.000955201', expected '1.000955201', error '0.000000000'

Test #96:

score: 0
Accepted
time: 4ms
memory: 5436kb

input:

51240
659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 659 65...

output:

1.000941825228476

result:

ok found '1.000941825', expected '1.000941825', error '0.000000000'

Test #97:

score: 0
Accepted
time: 4ms
memory: 5296kb

input:

52805
697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 697 69...

output:

1.000918296726828

result:

ok found '1.000918297', expected '1.000918297', error '0.000000000'

Test #98:

score: 0
Accepted
time: 9ms
memory: 5280kb

input:

53987
139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 139 13...

output:

1.000901296352781

result:

ok found '1.000901296', expected '1.000901296', error '0.000000000'

Test #99:

score: 0
Accepted
time: 9ms
memory: 5308kb

input:

55004
964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 964 96...

output:

1.000887329581852

result:

ok found '1.000887330', expected '1.000887330', error '0.000000000'

Test #100:

score: 0
Accepted
time: 9ms
memory: 5516kb

input:

55440
188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 188 18...

output:

1.000881612830903

result:

ok found '1.000881613', expected '1.000881613', error '0.000000000'

Test #101:

score: 0
Accepted
time: 9ms
memory: 5320kb

input:

55657
829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 829 82...

output:

1.000878508346596

result:

ok found '1.000878508', expected '1.000878508', error '0.000000000'

Test #102:

score: 0
Accepted
time: 9ms
memory: 5352kb

input:

56716
89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 89 ...

output:

1.000864698775009

result:

ok found '1.000864699', expected '1.000864699', error '0.000000000'

Test #103:

score: 0
Accepted
time: 6ms
memory: 5592kb

input:

57514
65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 65 ...

output:

1.000854595957219

result:

ok found '1.000854596', expected '1.000854596', error '0.000000000'

Test #104:

score: 0
Accepted
time: 10ms
memory: 5580kb

input:

58775
927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 927 92...

output:

1.000839071868126

result:

ok found '1.000839072', expected '1.000839072', error '0.000000000'

Test #105:

score: 0
Accepted
time: 10ms
memory: 5628kb

input:

59389
388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 388 38...

output:

1.000831795904089

result:

ok found '1.000831796', expected '1.000831796', error '0.000000000'

Test #106:

score: 0
Accepted
time: 10ms
memory: 5596kb

input:

60224
877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 877 87...

output:

1.000822117118206

result:

ok found '1.000822117', expected '1.000822117', error '0.000000000'

Test #107:

score: 0
Accepted
time: 10ms
memory: 5628kb

input:

61791
252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 252 25...

output:

1.000804498925576

result:

ok found '1.000804499', expected '1.000804499', error '0.000000000'

Test #108:

score: 0
Accepted
time: 3ms
memory: 5852kb

input:

62077
690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 690 69...

output:

1.000801329808393

result:

ok found '1.000801330', expected '1.000801330', error '0.000000000'

Test #109:

score: 0
Accepted
time: 10ms
memory: 5868kb

input:

63703
716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 716 71...

output:

1.000784042439427

result:

ok found '1.000784042', expected '1.000784042', error '0.000000000'

Test #110:

score: 0
Accepted
time: 10ms
memory: 5728kb

input:

64563
18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 ...

output:

1.000775257580973

result:

ok found '1.000775258', expected '1.000775258', error '0.000000000'

Test #111:

score: 0
Accepted
time: 11ms
memory: 6080kb

input:

65659
100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 10...

output:

1.000764268725857

result:

ok found '1.000764269', expected '1.000764269', error '0.000000000'

Test #112:

score: 0
Accepted
time: 11ms
memory: 6128kb

input:

66969
200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 20...

output:

1.000751648613907

result:

ok found '1.000751649', expected '1.000751649', error '0.000000000'

Test #113:

score: 0
Accepted
time: 11ms
memory: 6088kb

input:

67577
882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 882 88...

output:

1.000745925152944

result:

ok found '1.000745925', expected '1.000745925', error '0.000000000'

Test #114:

score: 0
Accepted
time: 11ms
memory: 6016kb

input:

68153
822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 822 82...

output:

1.000740645786994

result:

ok found '1.000740646', expected '1.000740646', error '0.000000000'

Test #115:

score: 0
Accepted
time: 8ms
memory: 6008kb

input:

69858
706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 706 70...

output:

1.000725344089156

result:

ok found '1.000725344', expected '1.000725344', error '0.000000000'

Test #116:

score: 0
Accepted
time: 12ms
memory: 6032kb

input:

70303
996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 99...

output:

1.000721490767821

result:

ok found '1.000721491', expected '1.000721491', error '0.000000000'

Test #117:

score: 0
Accepted
time: 12ms
memory: 5956kb

input:

71408
355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 35...

output:

1.000712082700694

result:

ok found '1.000712083', expected '1.000712083', error '0.000000000'

Test #118:

score: 0
Accepted
time: 9ms
memory: 5948kb

input:

72559
786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 786 78...

output:

1.000702513588333

result:

ok found '1.000702514', expected '1.000702514', error '0.000000000'

Test #119:

score: 0
Accepted
time: 8ms
memory: 5960kb

input:

73310
949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 949 94...

output:

1.000696416216563

result:

ok found '1.000696416', expected '1.000696416', error '0.000000000'

Test #120:

score: 0
Accepted
time: 12ms
memory: 6252kb

input:

74111
787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 787 78...

output:

1.000690068478874

result:

ok found '1.000690068', expected '1.000690068', error '0.000000000'

Test #121:

score: 0
Accepted
time: 12ms
memory: 6488kb

input:

75837
118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 118 11...

output:

1.000676717912514

result:

ok found '1.000676718', expected '1.000676718', error '0.000000000'

Test #122:

score: 0
Accepted
time: 13ms
memory: 6328kb

input:

76433
513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 513 51...

output:

1.000672243822921

result:

ok found '1.000672244', expected '1.000672244', error '0.000000000'

Test #123:

score: 0
Accepted
time: 13ms
memory: 6300kb

input:

77087
111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 11...

output:

1.000667421315666

result:

ok found '1.000667421', expected '1.000667421', error '0.000000000'

Test #124:

score: 0
Accepted
time: 13ms
memory: 6448kb

input:

78785
447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 447 44...

output:

1.000655292610657

result:

ok found '1.000655293', expected '1.000655293', error '0.000000000'

Test #125:

score: 0
Accepted
time: 13ms
memory: 6452kb

input:

79560
895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 895 89...

output:

1.000649961466360

result:

ok found '1.000649961', expected '1.000649961', error '0.000000000'

Test #126:

score: 0
Accepted
time: 13ms
memory: 6328kb

input:

80084
879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 879 87...

output:

1.000646325268231

result:

ok found '1.000646325', expected '1.000646325', error '0.000000000'

Test #127:

score: 0
Accepted
time: 13ms
memory: 6312kb

input:

81225
136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 136 13...

output:

1.000638622302147

result:

ok found '1.000638622', expected '1.000638622', error '0.000000000'

Test #128:

score: 0
Accepted
time: 14ms
memory: 6808kb

input:

82523
924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 924 92...

output:

1.000630057598851

result:

ok found '1.000630058', expected '1.000630058', error '0.000000000'

Test #129:

score: 0
Accepted
time: 14ms
memory: 6812kb

input:

83012
293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 29...

output:

1.000626934747915

result:

ok found '1.000626935', expected '1.000626935', error '0.000000000'

Test #130:

score: 0
Accepted
time: 10ms
memory: 6576kb

input:

83160
569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 569 56...

output:

1.000626076813752

result:

ok found '1.000626077', expected '1.000626077', error '0.000000000'

Test #131:

score: 0
Accepted
time: 14ms
memory: 6636kb

input:

84059
143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 143 14...

output:

1.000620312157632

result:

ok found '1.000620312', expected '1.000620312', error '0.000000000'

Test #132:

score: 0
Accepted
time: 14ms
memory: 6596kb

input:

85054
371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 37...

output:

1.000614180314267

result:

ok found '1.000614180', expected '1.000614180', error '0.000000000'

Test #133:

score: 0
Accepted
time: 11ms
memory: 6616kb

input:

86683
744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 74...

output:

1.000604367401143

result:

ok found '1.000604367', expected '1.000604367', error '0.000000000'

Test #134:

score: 0
Accepted
time: 15ms
memory: 6612kb

input:

87912
152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 152 15...

output:

1.000597289076977

result:

ok found '1.000597289', expected '1.000597289', error '0.000000000'

Test #135:

score: 0
Accepted
time: 14ms
memory: 6776kb

input:

88145
352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 35...

output:

1.000595892147354

result:

ok found '1.000595892', expected '1.000595892', error '0.000000000'

Test #136:

score: 0
Accepted
time: 15ms
memory: 6796kb

input:

89610
355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 35...

output:

1.000587635268249

result:

ok found '1.000587635', expected '1.000587635', error '0.000000000'

Test #137:

score: 0
Accepted
time: 15ms
memory: 6892kb

input:

90942
570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 570 57...

output:

1.000580297638107

result:

ok found '1.000580298', expected '1.000580298', error '0.000000000'

Test #138:

score: 0
Accepted
time: 11ms
memory: 6972kb

input:

91920
602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 60...

output:

1.000575102246148

result:

ok found '1.000575102', expected '1.000575102', error '0.000000000'

Test #139:

score: 0
Accepted
time: 16ms
memory: 6900kb

input:

92456
996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 996 99...

output:

1.000572298384230

result:

ok found '1.000572298', expected '1.000572298', error '0.000000000'

Test #140:

score: 0
Accepted
time: 15ms
memory: 6968kb

input:

93343
120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 120 12...

output:

1.000567656562906

result:

ok found '1.000567657', expected '1.000567657', error '0.000000000'

Test #141:

score: 0
Accepted
time: 11ms
memory: 6992kb

input:

94688
74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 74 ...

output:

1.000560802415694

result:

ok found '1.000560802', expected '1.000560802', error '0.000000000'

Test #142:

score: 0
Accepted
time: 16ms
memory: 6928kb

input:

95837
215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 215 21...

output:

1.000555107758429

result:

ok found '1.000555108', expected '1.000555108', error '0.000000000'

Test #143:

score: 0
Accepted
time: 16ms
memory: 6940kb

input:

96541
769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 769 76...

output:

1.000551661957371

result:

ok found '1.000551662', expected '1.000551662', error '0.000000000'

Test #144:

score: 0
Accepted
time: 13ms
memory: 7008kb

input:

97986
613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 613 61...

output:

1.000544768116684

result:

ok found '1.000544768', expected '1.000544768', error '0.000000000'

Test #145:

score: 0
Accepted
time: 17ms
memory: 6948kb

input:

98979
797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 797 79...

output:

1.000540094642337

result:

ok found '1.000540095', expected '1.000540095', error '0.000000000'

Test #146:

score: 0
Accepted
time: 16ms
memory: 7224kb

input:

99873
93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 93 ...

output:

1.000536005850350

result:

ok found '1.000536006', expected '1.000536006', error '0.000000000'

Test #147:

score: 0
Accepted
time: 17ms
memory: 7468kb

input:

100000
210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 210 2...

output:

1.000535452010605

result:

ok found '1.000535452', expected '1.000535452', error '0.000000000'

Test #148:

score: 0
Accepted
time: 1ms
memory: 4116kb

input:

100
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

output:

22.450709329775838

result:

ok found '22.450709330', expected '22.450709330', error '0.000000000'

Test #149:

score: 0
Accepted
time: 12ms
memory: 7272kb

input:

100000
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

1.020520801176192

result:

ok found '1.020520801', expected '1.020520801', error '0.000000000'

Test #150:

score: 0
Accepted
time: 1ms
memory: 4020kb

input:

588
1 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...

output:

3.897701417595307

result:

ok found '3.897701418', expected '3.897701418', error '0.000000000'

Test #151:

score: 0
Accepted
time: 16ms
memory: 7300kb

input:

99991
1 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...

output:

1.015550052028390

result:

ok found '1.015550052', expected '1.015550052', error '0.000000000'

Test #152:

score: 0
Accepted
time: 1ms
memory: 3920kb

input:

589
1000 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

6.965333448882762

result:

ok found '6.965333449', expected '6.965333449', error '0.000000000'

Test #153:

score: 0
Accepted
time: 8ms
memory: 7404kb

input:

99990
1000 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

1.035488521780484

result:

ok found '1.035488522', expected '1.035488522', error '0.000000000'

Extra Test:

score: 0
Extra Test Passed