結果

問題 No.1235 ζ関数
ユーザー furafura
提出日時 2020-09-26 16:15:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 199,704 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 03:39:25
合計ジャッジ時間 6,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
6,816 KB
testcase_01 AC 149 ms
6,940 KB
testcase_02 AC 148 ms
6,944 KB
testcase_03 AC 156 ms
6,944 KB
testcase_04 AC 223 ms
6,940 KB
testcase_05 AC 149 ms
6,944 KB
testcase_06 AC 150 ms
6,940 KB
testcase_07 AC 153 ms
6,940 KB
testcase_08 AC 148 ms
6,944 KB
testcase_09 AC 150 ms
6,944 KB
testcase_10 AC 148 ms
6,940 KB
testcase_11 AC 147 ms
6,940 KB
testcase_12 AC 149 ms
6,944 KB
testcase_13 AC 148 ms
6,940 KB
testcase_14 AC 148 ms
6,940 KB
testcase_15 AC 147 ms
6,940 KB
testcase_16 AC 228 ms
6,944 KB
testcase_17 AC 149 ms
6,940 KB
testcase_18 AC 148 ms
6,944 KB
testcase_19 AC 151 ms
6,940 KB
testcase_20 AC 148 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n; scanf("%d",&n);

	double ans=0;
	for(int i=1;i<1e7;i++) ans+=1/pow(i,n);
	printf("%.9f\n",ans);

	return 0;
}
0