結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 13:30:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-05-07 10:35:13
合計ジャッジ時間 11,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
41,752 KB
testcase_01 AC 210 ms
41,884 KB
testcase_02 AC 188 ms
41,548 KB
testcase_03 AC 193 ms
41,648 KB
testcase_04 AC 215 ms
41,668 KB
testcase_05 AC 205 ms
41,676 KB
testcase_06 AC 157 ms
41,548 KB
testcase_07 AC 225 ms
41,616 KB
testcase_08 AC 204 ms
41,492 KB
testcase_09 AC 231 ms
41,620 KB
testcase_10 AC 187 ms
41,900 KB
testcase_11 AC 231 ms
41,720 KB
testcase_12 AC 189 ms
41,616 KB
testcase_13 AC 213 ms
41,672 KB
testcase_14 AC 200 ms
41,776 KB
testcase_15 AC 217 ms
41,740 KB
testcase_16 AC 184 ms
41,636 KB
testcase_17 AC 221 ms
41,656 KB
testcase_18 AC 210 ms
41,948 KB
testcase_19 AC 205 ms
42,020 KB
testcase_20 AC 213 ms
41,692 KB
testcase_21 AC 139 ms
41,872 KB
testcase_22 AC 150 ms
42,072 KB
testcase_23 AC 231 ms
42,076 KB
testcase_24 AC 233 ms
41,428 KB
testcase_25 AC 215 ms
41,600 KB
testcase_26 AC 227 ms
41,612 KB
testcase_27 AC 227 ms
41,836 KB
testcase_28 AC 194 ms
42,012 KB
testcase_29 AC 232 ms
41,592 KB
testcase_30 AC 231 ms
41,656 KB
testcase_31 AC 233 ms
41,572 KB
testcase_32 AC 216 ms
41,772 KB
testcase_33 AC 220 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q454 {
	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 <= 30; ++i) {
			ans += 1 / ((i + x) * (i + x));
			res -= 1 / ((i + d) * (i + d));
		}
		ans += res;

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