結果

問題 No.1273 はじめのζ関数
ユーザー SSRS
提出日時 2020-10-30 21:32:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 1,603 ms
コンパイル使用メモリ 166,088 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 23:24:15
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 39 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int x;
  cin >> x;
  double ans = 0;
  for (int i = 2; i <= 1000; i++){
    double add = 1;
    for (int j = 0; j < x - 1; j++){
      add /= i;
    }
    add /= i - 1;
    ans += add;
  }
  ans *= 1000000;
  cout << (int) ans << endl;
}
0