結果

問題 No.1272 珍しい級数
ユーザー tentententen
提出日時 2022-10-04 11:13:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 2,743 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 51,296 KB
最終ジャッジ日時 2024-06-09 10:13:34
合計ジャッジ時間 38,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
50,840 KB
testcase_01 AC 657 ms
50,812 KB
testcase_02 AC 666 ms
50,968 KB
testcase_03 AC 668 ms
50,984 KB
testcase_04 AC 653 ms
50,756 KB
testcase_05 AC 662 ms
50,876 KB
testcase_06 AC 660 ms
51,052 KB
testcase_07 AC 666 ms
51,176 KB
testcase_08 AC 656 ms
51,088 KB
testcase_09 AC 653 ms
51,020 KB
testcase_10 AC 656 ms
50,880 KB
testcase_11 AC 650 ms
51,000 KB
testcase_12 AC 663 ms
50,804 KB
testcase_13 AC 658 ms
50,836 KB
testcase_14 AC 682 ms
50,876 KB
testcase_15 AC 653 ms
50,964 KB
testcase_16 AC 658 ms
50,732 KB
testcase_17 AC 657 ms
50,740 KB
testcase_18 AC 664 ms
51,044 KB
testcase_19 AC 661 ms
50,908 KB
testcase_20 AC 663 ms
51,296 KB
testcase_21 AC 657 ms
50,876 KB
testcase_22 AC 658 ms
50,804 KB
testcase_23 AC 665 ms
50,804 KB
testcase_24 AC 664 ms
50,928 KB
testcase_25 AC 653 ms
51,092 KB
testcase_26 AC 670 ms
50,792 KB
testcase_27 AC 663 ms
51,104 KB
testcase_28 AC 683 ms
51,092 KB
testcase_29 AC 667 ms
51,076 KB
testcase_30 AC 657 ms
51,092 KB
testcase_31 AC 651 ms
50,928 KB
testcase_32 AC 662 ms
51,128 KB
testcase_33 AC 659 ms
51,172 KB
testcase_34 AC 655 ms
51,036 KB
testcase_35 AC 665 ms
51,100 KB
testcase_36 AC 653 ms
50,852 KB
testcase_37 AC 650 ms
50,988 KB
testcase_38 AC 669 ms
51,092 KB
testcase_39 AC 653 ms
51,100 KB
testcase_40 AC 655 ms
50,940 KB
testcase_41 AC 661 ms
50,996 KB
testcase_42 AC 664 ms
51,148 KB
testcase_43 AC 673 ms
50,892 KB
testcase_44 AC 660 ms
50,788 KB
testcase_45 AC 665 ms
50,992 KB
testcase_46 AC 662 ms
50,912 KB
testcase_47 AC 660 ms
50,952 KB
testcase_48 AC 659 ms
50,800 KB
testcase_49 AC 668 ms
50,816 KB
testcase_50 AC 660 ms
50,760 KB
testcase_51 AC 665 ms
50,880 KB
testcase_52 AC 665 ms
51,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        double k = sc.nextInt();
        double ans = 0;
        for (int i = 1; i < 10000000; i++) {
            ans += Math.sin(k * i) / Math.pow(i, i);
        }
        System.out.println(ans);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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