結果

問題 No.1273 はじめのζ関数
ユーザー nawawannawawan
提出日時 2020-10-30 21:52:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 71,740 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 00:18:46
合計ジャッジ時間 6,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
6,816 KB
testcase_01 AC 225 ms
6,944 KB
testcase_02 AC 176 ms
6,940 KB
testcase_03 AC 16 ms
6,940 KB
testcase_04 AC 215 ms
6,944 KB
testcase_05 AC 238 ms
6,944 KB
testcase_06 AC 59 ms
6,940 KB
testcase_07 AC 218 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 142 ms
6,944 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 235 ms
6,940 KB
testcase_12 AC 228 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 207 ms
6,940 KB
testcase_15 AC 205 ms
6,940 KB
testcase_16 AC 205 ms
6,944 KB
testcase_17 AC 211 ms
6,940 KB
testcase_18 AC 173 ms
6,944 KB
testcase_19 AC 171 ms
6,944 KB
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 239 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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 <= 100; i++){
        for(int j = 2; j <= 100000; j++){
            ans += 1.0 / pow((double)j, (double)i);
        }
    }
    ans *= 1e6;
    long long t = (ans + 1e-3);
    cout << t << endl;
}
0