結果

問題 No.1235 ζ関数
ユーザー 37zigen37zigen
提出日時 2020-09-21 16:02:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-06-24 11:45:35
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,184 KB
testcase_01 AC 133 ms
54,492 KB
testcase_02 AC 121 ms
53,212 KB
testcase_03 AC 134 ms
54,060 KB
testcase_04 AC 133 ms
54,088 KB
testcase_05 AC 134 ms
54,276 KB
testcase_06 AC 135 ms
54,288 KB
testcase_07 AC 135 ms
54,348 KB
testcase_08 AC 124 ms
53,112 KB
testcase_09 AC 136 ms
54,336 KB
testcase_10 AC 135 ms
54,376 KB
testcase_11 AC 135 ms
54,092 KB
testcase_12 AC 135 ms
54,172 KB
testcase_13 AC 140 ms
54,212 KB
testcase_14 AC 135 ms
54,316 KB
testcase_15 AC 122 ms
53,016 KB
testcase_16 AC 123 ms
53,004 KB
testcase_17 AC 135 ms
53,932 KB
testcase_18 AC 121 ms
53,132 KB
testcase_19 AC 134 ms
53,972 KB
testcase_20 AC 136 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Stack;

class Main {
	public static void main(String[] $) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		double ans=0;
		for (double i=1;i<1e5;++i) {
			ans+=Math.pow(1/i, N);
		}
		System.out.println(ans);
		
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0