結果

問題 No.1273 はじめのζ関数
ユーザー nawawan
提出日時 2020-10-30 21:42:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 71,296 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 23:53:26
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 39 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int x;
    cin >> x;
    double ans = 0;
    for(int i = x; i <= 60; i++){
        for(int j = 2; j <= 10000; j++){
            if(i >= 10 && j >= 10) break;
            ans += 1.0 / pow((double)j, (double)i);
        }
    }
    ans *= 1e6;
    long long t = (ans + 1e-5);
    cout << t << endl;
}
0