結果
問題 | No.454 逆2乗和 |
ユーザー |
|
提出日時 | 2020-09-27 22:58:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 2,743 bytes |
コンパイル時間 | 1,869 ms |
コンパイル使用メモリ | 192,680 KB |
最終ジャッジ日時 | 2025-01-14 23:08:57 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
#include <bits/stdc++.h>using namespace std;// #define LOCAL // 提出時はコメントアウト#define DEBUG_typedef long long ll;const double EPS = 1e-9;const ll INF = ((1LL<<62)-(1LL<<31));typedef vector<ll> vecl;typedef pair<ll, ll> pairl;template<typename T, typename U> using mapv = map<T,vector<U>>;#define ALL(v) v.begin(), v.end()#define REP(i, x, n) for(int i = x; i < n; i++)#define rep(i, n) REP(i, 0, n)#define contains(S,x) find(ALL(S),x) != S.end()ll llceil(ll a,ll b) { return (a+b-1)/b; }template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }template<class T> vector<vector<T>> genarr(ll n, ll m, T init) { return vector<vector<T>>(n,vector<T>(m,init)); }///// DEBUG#define DUMPOUT cerr#define repi(itr, ds) for (auto itr = ds.begin(); itr != ds.end(); itr++)template<typename T>istream&operator>>(istream&is,vector<T>&vec){for(T&x:vec)is>>x;return is;}template<typename T,typename U>ostream&operator<<(ostream&os,pair<T,U>&pair_var){os<<"("<<pair_var.first<<", "<<pair_var.second<<")";return os;}template<typename T>ostream&operator<<(ostream&os,const vector<T>&vec){os<<"{";for(int i=0;i<vec.size();i++){os<<vec[i]<<(i+1==vec.size()?"":", ");}os<<"}";return os;}template<typename T,typename U>ostream&operator<<(ostream&os,map<T,U>&map_var){os<<"{";repi(itr,map_var){os<<*itr;itr++;if(itr!=map_var.end())os<<", ";itr--;}os<<"}";return os;}template<typename T>ostream&operator<<(ostream&os,set<T>&set_var){os<<"{";repi(itr,set_var){os<<*itr;itr++;if(itr!=set_var.end())os<<", ";itr--;}os<<"}";return os;}void dump_func(){DUMPOUT<<endl;}template<class Head,class...Tail>void dump_func(Head&&head,Tail&&...tail){DUMPOUT<<head;if(sizeof...(Tail)>0){DUMPOUT<<", ";}dump_func(std::move(tail)...);}#ifndef LOCAL#undef DEBUG_#endif#ifdef DEBUG_#define DEB#define dump(...) \DUMPOUT << " " << string(#__VA_ARGS__) << ": " \<< "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" \<< endl \<< " ", \dump_func(__VA_ARGS__)#else#define DEB if (false)#define dump(...)#endif//////////int main() {#ifdef LOCALifstream in("../../Atcoder/input.txt");cin.rdbuf(in.rdbuf());#endifdouble x;cin>>x;double f = 0;rep(n,1e6) {f += 1 / ((x+n+1) * (x+n+1));}f += 1 / (x+1e6+2);cout << fixed << setprecision(15) << f << endl;return 0;}