結果

問題 No.1271 初めての級数
ユーザー tentententen
提出日時 2020-11-04 10:44:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 3,101 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-07-22 09:51:09
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
41,476 KB
testcase_01 AC 203 ms
41,364 KB
testcase_02 AC 207 ms
41,112 KB
testcase_03 AC 206 ms
41,380 KB
testcase_04 AC 205 ms
41,204 KB
testcase_05 AC 205 ms
41,348 KB
testcase_06 AC 205 ms
41,484 KB
testcase_07 AC 206 ms
41,472 KB
testcase_08 AC 205 ms
41,264 KB
testcase_09 AC 206 ms
41,272 KB
testcase_10 AC 206 ms
41,648 KB
testcase_11 AC 204 ms
41,496 KB
testcase_12 AC 204 ms
41,264 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 += 1 / (i * (i + k));
		}
		System.out.println(ans);
	}
}
0