結果

問題 No.1118 sin(x)/xの二乗和
ユーザー SamShawCraftSamShawCraft
提出日時 2022-10-19 08:12:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 89,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 12:31:39
合計ジャッジ時間 6,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
5,248 KB
testcase_01 AC 235 ms
5,376 KB
testcase_02 AC 231 ms
5,376 KB
testcase_03 AC 233 ms
5,376 KB
testcase_04 AC 234 ms
5,376 KB
testcase_05 AC 231 ms
5,376 KB
testcase_06 AC 233 ms
5,376 KB
testcase_07 AC 232 ms
5,376 KB
testcase_08 AC 234 ms
5,376 KB
testcase_09 AC 234 ms
5,376 KB
testcase_10 AC 233 ms
5,376 KB
testcase_11 AC 234 ms
5,376 KB
testcase_12 AC 234 ms
5,376 KB
testcase_13 AC 235 ms
5,376 KB
testcase_14 AC 233 ms
5,376 KB
testcase_15 AC 231 ms
5,376 KB
testcase_16 AC 233 ms
5,376 KB
testcase_17 AC 233 ms
5,376 KB
testcase_18 AC 235 ms
5,376 KB
testcase_19 AC 234 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <algorithm>
#include <cmath>
const int replim=1e7+9;
double x,ans,base;
int main(){
  std::cin>>x;
  std::cout<<std::setprecision(10)<<std::fixed;
  ans=std::sin(x)/x*std::sin(x)/x;
  base=1./(x+1.);
  for(int cx=1;cx<=replim;++cx)
    base+=1./(x+cx)/(x+cx)/(x+cx+1);
  for(int cx=1;cx<=replim;++cx)
    base-=std::cos(2*(x+cx))/(x+cx)/(x+cx);
  ans+=.5*base;
  std::cout<<ans<<std::endl;
  return 0;
}
0