結果

問題 No.1272 珍しい級数
ユーザー tentententen
提出日時 2020-11-04 10:47:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 83,100 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-07-22 09:53:01
合計ジャッジ時間 48,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
40,280 KB
testcase_01 AC 815 ms
41,544 KB
testcase_02 AC 823 ms
41,140 KB
testcase_03 AC 818 ms
41,284 KB
testcase_04 AC 819 ms
41,280 KB
testcase_05 AC 819 ms
41,020 KB
testcase_06 AC 830 ms
41,412 KB
testcase_07 AC 823 ms
41,340 KB
testcase_08 AC 825 ms
41,148 KB
testcase_09 AC 823 ms
41,628 KB
testcase_10 AC 828 ms
41,344 KB
testcase_11 AC 820 ms
41,164 KB
testcase_12 AC 832 ms
41,116 KB
testcase_13 AC 823 ms
41,580 KB
testcase_14 AC 831 ms
41,212 KB
testcase_15 AC 822 ms
41,292 KB
testcase_16 AC 825 ms
41,288 KB
testcase_17 AC 822 ms
40,984 KB
testcase_18 AC 823 ms
41,256 KB
testcase_19 AC 825 ms
41,296 KB
testcase_20 AC 829 ms
41,248 KB
testcase_21 AC 807 ms
40,264 KB
testcase_22 AC 821 ms
41,388 KB
testcase_23 AC 820 ms
41,468 KB
testcase_24 AC 818 ms
41,152 KB
testcase_25 AC 807 ms
40,140 KB
testcase_26 AC 815 ms
41,512 KB
testcase_27 AC 817 ms
41,192 KB
testcase_28 AC 826 ms
41,484 KB
testcase_29 AC 821 ms
41,276 KB
testcase_30 AC 820 ms
41,844 KB
testcase_31 AC 814 ms
41,016 KB
testcase_32 AC 810 ms
40,332 KB
testcase_33 AC 816 ms
41,244 KB
testcase_34 AC 822 ms
41,548 KB
testcase_35 AC 824 ms
41,292 KB
testcase_36 AC 818 ms
41,324 KB
testcase_37 AC 819 ms
41,376 KB
testcase_38 AC 827 ms
41,176 KB
testcase_39 AC 817 ms
41,588 KB
testcase_40 AC 819 ms
41,380 KB
testcase_41 AC 823 ms
41,120 KB
testcase_42 AC 828 ms
41,016 KB
testcase_43 AC 828 ms
41,376 KB
testcase_44 AC 826 ms
41,156 KB
testcase_45 AC 821 ms
41,340 KB
testcase_46 AC 826 ms
41,240 KB
testcase_47 AC 822 ms
41,140 KB
testcase_48 AC 822 ms
41,248 KB
testcase_49 AC 821 ms
41,144 KB
testcase_50 AC 818 ms
41,112 KB
testcase_51 AC 826 ms
41,024 KB
testcase_52 AC 823 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		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);
	}
}
0