結果

問題 No.1235 ζ関数
ユーザー tentententen
提出日時 2024-07-25 16:21:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 1,300 bytes
コンパイル時間 3,112 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 51,580 KB
最終ジャッジ日時 2024-07-25 16:21:27
合計ジャッジ時間 11,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
51,508 KB
testcase_01 AC 324 ms
51,352 KB
testcase_02 AC 326 ms
51,340 KB
testcase_03 AC 336 ms
51,476 KB
testcase_04 AC 480 ms
51,340 KB
testcase_05 AC 334 ms
51,272 KB
testcase_06 AC 319 ms
51,580 KB
testcase_07 AC 340 ms
51,404 KB
testcase_08 AC 341 ms
51,384 KB
testcase_09 AC 347 ms
51,108 KB
testcase_10 AC 338 ms
51,368 KB
testcase_11 AC 326 ms
51,220 KB
testcase_12 AC 321 ms
51,272 KB
testcase_13 AC 324 ms
51,080 KB
testcase_14 AC 326 ms
51,324 KB
testcase_15 AC 324 ms
51,444 KB
testcase_16 AC 477 ms
51,428 KB
testcase_17 AC 329 ms
51,544 KB
testcase_18 AC 322 ms
51,400 KB
testcase_19 AC 323 ms
51,404 KB
testcase_20 AC 331 ms
51,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        double ans = 0;
        for (int i = 10000000; i > 0; i--) {
            ans += 1 / Math.pow(i, n);
        }
        System.out.println(new java.math.BigDecimal(ans).toPlainString());
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0