結果

問題 No.1272 珍しい級数
ユーザー tentententen
提出日時 2023-02-16 18:11:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 1,655 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 91,988 KB
実行使用メモリ 38,280 KB
最終ジャッジ日時 2024-07-18 18:05:55
合計ジャッジ時間 41,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
37,744 KB
testcase_01 AC 680 ms
38,224 KB
testcase_02 AC 690 ms
38,216 KB
testcase_03 AC 699 ms
37,800 KB
testcase_04 AC 684 ms
37,928 KB
testcase_05 AC 693 ms
38,132 KB
testcase_06 AC 704 ms
38,244 KB
testcase_07 AC 700 ms
37,968 KB
testcase_08 AC 692 ms
37,976 KB
testcase_09 AC 705 ms
38,068 KB
testcase_10 AC 701 ms
38,008 KB
testcase_11 AC 704 ms
37,932 KB
testcase_12 AC 699 ms
38,128 KB
testcase_13 AC 696 ms
38,144 KB
testcase_14 AC 703 ms
38,096 KB
testcase_15 AC 683 ms
38,000 KB
testcase_16 AC 691 ms
38,132 KB
testcase_17 AC 706 ms
38,216 KB
testcase_18 AC 689 ms
38,256 KB
testcase_19 AC 708 ms
38,208 KB
testcase_20 AC 699 ms
38,016 KB
testcase_21 AC 690 ms
38,064 KB
testcase_22 AC 691 ms
38,100 KB
testcase_23 AC 678 ms
38,048 KB
testcase_24 AC 681 ms
37,844 KB
testcase_25 AC 687 ms
37,968 KB
testcase_26 AC 741 ms
37,872 KB
testcase_27 AC 678 ms
37,968 KB
testcase_28 AC 695 ms
37,872 KB
testcase_29 AC 683 ms
38,224 KB
testcase_30 AC 697 ms
37,796 KB
testcase_31 AC 688 ms
38,136 KB
testcase_32 AC 695 ms
38,228 KB
testcase_33 AC 672 ms
38,104 KB
testcase_34 AC 686 ms
38,088 KB
testcase_35 AC 697 ms
38,096 KB
testcase_36 AC 684 ms
37,916 KB
testcase_37 AC 677 ms
37,920 KB
testcase_38 AC 703 ms
38,096 KB
testcase_39 AC 690 ms
38,192 KB
testcase_40 AC 690 ms
38,096 KB
testcase_41 AC 698 ms
38,280 KB
testcase_42 AC 699 ms
38,060 KB
testcase_43 AC 698 ms
38,196 KB
testcase_44 AC 690 ms
38,208 KB
testcase_45 AC 684 ms
38,004 KB
testcase_46 AC 684 ms
37,964 KB
testcase_47 AC 680 ms
38,108 KB
testcase_48 AC 684 ms
37,928 KB
testcase_49 AC 697 ms
38,008 KB
testcase_50 AC 697 ms
38,148 KB
testcase_51 AC 705 ms
38,068 KB
testcase_52 AC 687 ms
37,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = 10000000; i >= 1; i--) {
            ans += Math.sin(k * i) / Math.pow(i, i);
        }
        System.out.println(new java.math.BigDecimal(ans).toPlainString());
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0