結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 13:36:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 3,622 ms
コンパイル使用メモリ 79,152 KB
実行使用メモリ 41,980 KB
最終ジャッジ日時 2024-05-07 10:35:36
合計ジャッジ時間 9,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,632 KB
testcase_01 AC 150 ms
41,676 KB
testcase_02 AC 153 ms
41,724 KB
testcase_03 AC 151 ms
41,476 KB
testcase_04 AC 155 ms
41,568 KB
testcase_05 AC 152 ms
41,676 KB
testcase_06 AC 151 ms
41,572 KB
testcase_07 AC 155 ms
41,964 KB
testcase_08 AC 151 ms
41,320 KB
testcase_09 AC 152 ms
41,796 KB
testcase_10 AC 153 ms
41,552 KB
testcase_11 AC 152 ms
41,740 KB
testcase_12 AC 154 ms
41,608 KB
testcase_13 AC 148 ms
41,776 KB
testcase_14 AC 149 ms
41,700 KB
testcase_15 AC 153 ms
41,612 KB
testcase_16 AC 150 ms
41,576 KB
testcase_17 AC 151 ms
41,924 KB
testcase_18 AC 148 ms
41,672 KB
testcase_19 AC 150 ms
41,796 KB
testcase_20 AC 146 ms
41,544 KB
testcase_21 AC 147 ms
41,852 KB
testcase_22 AC 152 ms
41,484 KB
testcase_23 AC 151 ms
41,768 KB
testcase_24 AC 150 ms
41,456 KB
testcase_25 AC 151 ms
41,784 KB
testcase_26 AC 153 ms
41,980 KB
testcase_27 AC 153 ms
41,784 KB
testcase_28 AC 148 ms
41,556 KB
testcase_29 AC 150 ms
41,712 KB
testcase_30 AC 154 ms
41,608 KB
testcase_31 AC 153 ms
41,504 KB
testcase_32 AC 151 ms
41,852 KB
testcase_33 AC 150 ms
41,632 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