結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 00:37:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 3,507 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 41,932 KB
最終ジャッジ日時 2024-11-30 02:24:12
合計ジャッジ時間 11,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
41,620 KB
testcase_01 AC 201 ms
41,836 KB
testcase_02 AC 176 ms
41,696 KB
testcase_03 AC 180 ms
41,020 KB
testcase_04 AC 192 ms
41,604 KB
testcase_05 AC 190 ms
41,864 KB
testcase_06 AC 133 ms
41,656 KB
testcase_07 AC 196 ms
41,500 KB
testcase_08 AC 188 ms
41,356 KB
testcase_09 AC 205 ms
41,756 KB
testcase_10 AC 168 ms
41,800 KB
testcase_11 AC 218 ms
41,840 KB
testcase_12 AC 173 ms
41,580 KB
testcase_13 AC 196 ms
41,664 KB
testcase_14 AC 168 ms
41,568 KB
testcase_15 AC 205 ms
41,460 KB
testcase_16 AC 187 ms
41,676 KB
testcase_17 AC 208 ms
41,036 KB
testcase_18 AC 200 ms
41,332 KB
testcase_19 AC 189 ms
41,824 KB
testcase_20 AC 196 ms
41,620 KB
testcase_21 AC 124 ms
41,820 KB
testcase_22 AC 125 ms
40,932 KB
testcase_23 AC 209 ms
41,808 KB
testcase_24 AC 223 ms
41,576 KB
testcase_25 AC 212 ms
41,416 KB
testcase_26 AC 212 ms
41,040 KB
testcase_27 AC 193 ms
41,672 KB
testcase_28 AC 181 ms
41,932 KB
testcase_29 AC 211 ms
41,552 KB
testcase_30 AC 210 ms
41,460 KB
testcase_31 AC 210 ms
41,724 KB
testcase_32 AC 193 ms
41,668 KB
testcase_33 AC 186 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q1436 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double res = Math.PI * Math.PI / 6;
		double ans = 0;
		double i = 1;
		double x = sc.nextDouble();
		ans = 0;
		i = 1;
		int d = (int) x;
		for (double j = 1; j <= d; ++j)
			res -= 1 / (j * j);
		for (; res - res * Math.pow(Math.E, -x / i) > 0.0000000001; ++i) {
			ans += 1 / ((i + x) * (i + x));
			res -= 1 / ((i + d) * (i + d));
		}
		ans += res;

		System.out.printf("%.20f\n", ans);
	}
}
0