結果

問題 No.1235 ζ関数
ユーザー tentententen
提出日時 2020-09-23 22:55:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-06-28 04:39:38
合計ジャッジ時間 7,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
41,276 KB
testcase_01 AC 166 ms
41,392 KB
testcase_02 AC 163 ms
41,252 KB
testcase_03 AC 164 ms
41,244 KB
testcase_04 AC 183 ms
41,052 KB
testcase_05 AC 164 ms
41,656 KB
testcase_06 AC 165 ms
41,480 KB
testcase_07 AC 164 ms
41,488 KB
testcase_08 AC 165 ms
41,168 KB
testcase_09 AC 166 ms
41,156 KB
testcase_10 AC 167 ms
41,500 KB
testcase_11 AC 165 ms
41,160 KB
testcase_12 AC 168 ms
41,628 KB
testcase_13 AC 164 ms
41,412 KB
testcase_14 AC 165 ms
41,428 KB
testcase_15 AC 151 ms
40,292 KB
testcase_16 AC 181 ms
41,444 KB
testcase_17 AC 162 ms
41,240 KB
testcase_18 AC 164 ms
41,260 KB
testcase_19 AC 166 ms
41,572 KB
testcase_20 AC 167 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	double ans = 0;
    	for (int i = 1; i <= 1000000; i++) {
    	    ans += 1 / Math.pow(i, n);
    	}
    	System.out.println(ans);
	}
}
0