結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 13:39:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-11-30 02:24:54
合計ジャッジ時間 9,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,500 KB
testcase_01 AC 136 ms
40,880 KB
testcase_02 AC 148 ms
41,488 KB
testcase_03 AC 150 ms
41,556 KB
testcase_04 AC 150 ms
41,596 KB
testcase_05 AC 151 ms
41,720 KB
testcase_06 AC 153 ms
41,424 KB
testcase_07 AC 150 ms
41,676 KB
testcase_08 AC 152 ms
41,352 KB
testcase_09 AC 152 ms
41,560 KB
testcase_10 AC 137 ms
40,932 KB
testcase_11 AC 148 ms
41,684 KB
testcase_12 AC 151 ms
41,428 KB
testcase_13 AC 151 ms
41,548 KB
testcase_14 AC 153 ms
41,500 KB
testcase_15 AC 148 ms
41,428 KB
testcase_16 AC 150 ms
41,548 KB
testcase_17 AC 151 ms
41,640 KB
testcase_18 AC 152 ms
41,312 KB
testcase_19 AC 150 ms
41,472 KB
testcase_20 AC 152 ms
41,472 KB
testcase_21 AC 137 ms
40,724 KB
testcase_22 AC 136 ms
41,188 KB
testcase_23 AC 151 ms
41,724 KB
testcase_24 AC 136 ms
41,188 KB
testcase_25 AC 151 ms
41,636 KB
testcase_26 AC 149 ms
41,464 KB
testcase_27 AC 150 ms
41,720 KB
testcase_28 AC 149 ms
41,684 KB
testcase_29 AC 147 ms
41,464 KB
testcase_30 AC 150 ms
41,772 KB
testcase_31 AC 150 ms
41,724 KB
testcase_32 AC 148 ms
41,812 KB
testcase_33 AC 148 ms
41,488 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();
		assert x >= 0 && x <= 1000;
		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