結果

問題 No.1272 珍しい級数
ユーザー tentententen
提出日時 2022-08-04 16:56:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 38,376 KB
最終ジャッジ日時 2024-09-14 13:36:10
合計ジャッジ時間 10,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
37,936 KB
testcase_01 AC 128 ms
38,296 KB
testcase_02 AC 130 ms
37,996 KB
testcase_03 AC 126 ms
38,264 KB
testcase_04 AC 130 ms
38,220 KB
testcase_05 AC 130 ms
38,284 KB
testcase_06 AC 131 ms
38,044 KB
testcase_07 AC 130 ms
38,188 KB
testcase_08 AC 132 ms
38,108 KB
testcase_09 AC 131 ms
38,124 KB
testcase_10 AC 133 ms
38,044 KB
testcase_11 AC 132 ms
37,996 KB
testcase_12 AC 130 ms
37,836 KB
testcase_13 AC 130 ms
38,004 KB
testcase_14 AC 131 ms
38,044 KB
testcase_15 AC 130 ms
37,972 KB
testcase_16 AC 130 ms
37,848 KB
testcase_17 AC 131 ms
38,224 KB
testcase_18 AC 130 ms
38,260 KB
testcase_19 AC 132 ms
38,296 KB
testcase_20 AC 132 ms
38,376 KB
testcase_21 AC 132 ms
38,052 KB
testcase_22 AC 133 ms
38,044 KB
testcase_23 AC 129 ms
38,260 KB
testcase_24 AC 128 ms
37,988 KB
testcase_25 AC 130 ms
37,856 KB
testcase_26 AC 129 ms
38,296 KB
testcase_27 AC 130 ms
38,132 KB
testcase_28 AC 130 ms
38,220 KB
testcase_29 AC 130 ms
37,848 KB
testcase_30 AC 129 ms
38,228 KB
testcase_31 AC 129 ms
38,188 KB
testcase_32 AC 128 ms
37,812 KB
testcase_33 AC 130 ms
38,064 KB
testcase_34 AC 129 ms
38,188 KB
testcase_35 AC 131 ms
38,060 KB
testcase_36 AC 129 ms
37,964 KB
testcase_37 AC 129 ms
37,988 KB
testcase_38 AC 129 ms
38,088 KB
testcase_39 AC 129 ms
37,884 KB
testcase_40 AC 130 ms
38,072 KB
testcase_41 AC 130 ms
37,904 KB
testcase_42 AC 130 ms
38,248 KB
testcase_43 AC 130 ms
37,688 KB
testcase_44 AC 130 ms
38,324 KB
testcase_45 AC 129 ms
37,924 KB
testcase_46 AC 130 ms
37,664 KB
testcase_47 AC 131 ms
38,048 KB
testcase_48 AC 130 ms
38,136 KB
testcase_49 AC 131 ms
38,060 KB
testcase_50 AC 132 ms
38,044 KB
testcase_51 AC 131 ms
38,000 KB
testcase_52 AC 131 ms
37,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        double n = sc.nextInt();
        double ans = 0;
        for (int i = 1000000; i >= 1; i--) {
            ans += Math.sin(n * i) / Math.pow(i, i);
        }
        System.out.println(new java.math.BigDecimal(ans).toPlainString());
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0