結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 13:36:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 3,712 ms
コンパイル使用メモリ 75,064 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-11-30 02:24:43
合計ジャッジ時間 8,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,760 KB
testcase_01 AC 136 ms
41,232 KB
testcase_02 AC 142 ms
41,492 KB
testcase_03 AC 134 ms
41,200 KB
testcase_04 AC 143 ms
41,520 KB
testcase_05 AC 144 ms
41,436 KB
testcase_06 AC 128 ms
40,860 KB
testcase_07 AC 128 ms
40,884 KB
testcase_08 AC 140 ms
41,496 KB
testcase_09 AC 122 ms
40,856 KB
testcase_10 AC 125 ms
40,744 KB
testcase_11 AC 138 ms
41,612 KB
testcase_12 AC 138 ms
41,348 KB
testcase_13 AC 137 ms
41,368 KB
testcase_14 AC 125 ms
40,856 KB
testcase_15 AC 142 ms
41,600 KB
testcase_16 AC 141 ms
41,056 KB
testcase_17 AC 137 ms
41,300 KB
testcase_18 AC 138 ms
41,668 KB
testcase_19 AC 141 ms
41,740 KB
testcase_20 AC 141 ms
41,400 KB
testcase_21 AC 142 ms
41,640 KB
testcase_22 AC 139 ms
41,408 KB
testcase_23 AC 141 ms
41,388 KB
testcase_24 AC 141 ms
41,496 KB
testcase_25 AC 140 ms
41,396 KB
testcase_26 AC 129 ms
40,844 KB
testcase_27 AC 141 ms
41,656 KB
testcase_28 AC 140 ms
41,584 KB
testcase_29 AC 142 ms
41,552 KB
testcase_30 AC 144 ms
41,792 KB
testcase_31 AC 153 ms
41,404 KB
testcase_32 AC 143 ms
41,496 KB
testcase_33 AC 145 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q454 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double ans = 0;
		double x = sc.nextDouble();
		double i;
		for (i = 1; i < 100000; ++i) {
			ans += 1 / ((i + x) * (i + x));
		}
		ans += 1 / (x + i - 0.5);
		System.out.printf("%.20f\n", ans);
	}
}
0