結果

問題 No.1271 初めての級数
ユーザー ks2mks2m
提出日時 2020-10-30 21:22:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-07-21 23:05:05
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,056 KB
testcase_01 AC 157 ms
41,412 KB
testcase_02 AC 146 ms
40,996 KB
testcase_03 AC 156 ms
41,304 KB
testcase_04 AC 161 ms
41,400 KB
testcase_05 AC 161 ms
41,460 KB
testcase_06 AC 161 ms
41,144 KB
testcase_07 AC 157 ms
41,384 KB
testcase_08 AC 160 ms
41,316 KB
testcase_09 AC 146 ms
41,180 KB
testcase_10 AC 162 ms
41,244 KB
testcase_11 AC 157 ms
41,492 KB
testcase_12 AC 156 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		sc.close();

		double ans = 0;
		for (int i = 1; i < 3000000; i++) {
			ans += 1.0 / i / (i + k);
		}
		System.out.println(ans);
	}
}
0