結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 13:39:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 3,639 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 42,088 KB
最終ジャッジ日時 2024-05-07 10:35:46
合計ジャッジ時間 10,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,780 KB
testcase_01 AC 152 ms
41,912 KB
testcase_02 AC 154 ms
41,364 KB
testcase_03 AC 153 ms
41,776 KB
testcase_04 AC 155 ms
41,904 KB
testcase_05 AC 156 ms
41,528 KB
testcase_06 AC 153 ms
41,820 KB
testcase_07 AC 150 ms
41,872 KB
testcase_08 AC 152 ms
41,820 KB
testcase_09 AC 151 ms
41,508 KB
testcase_10 AC 152 ms
41,428 KB
testcase_11 AC 158 ms
41,672 KB
testcase_12 AC 159 ms
41,528 KB
testcase_13 AC 154 ms
41,780 KB
testcase_14 AC 153 ms
41,456 KB
testcase_15 AC 153 ms
41,676 KB
testcase_16 AC 153 ms
41,876 KB
testcase_17 AC 152 ms
41,620 KB
testcase_18 AC 154 ms
41,724 KB
testcase_19 AC 150 ms
41,692 KB
testcase_20 AC 154 ms
41,712 KB
testcase_21 AC 151 ms
41,224 KB
testcase_22 AC 151 ms
42,088 KB
testcase_23 AC 153 ms
41,452 KB
testcase_24 AC 157 ms
42,020 KB
testcase_25 AC 151 ms
41,492 KB
testcase_26 AC 151 ms
41,484 KB
testcase_27 AC 155 ms
41,768 KB
testcase_28 AC 152 ms
41,512 KB
testcase_29 AC 152 ms
41,616 KB
testcase_30 AC 152 ms
41,628 KB
testcase_31 AC 154 ms
41,500 KB
testcase_32 AC 152 ms
41,880 KB
testcase_33 AC 152 ms
41,980 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