結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 00:28:03
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 3,471 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-11-27 14:37:42
合計ジャッジ時間 9,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,384 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 145 ms
41,420 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 141 ms
41,176 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 142 ms
41,508 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 143 ms
41,544 KB
testcase_21 AC 134 ms
40,648 KB
testcase_22 WA -
testcase_23 AC 142 ms
41,464 KB
testcase_24 AC 140 ms
41,504 KB
testcase_25 AC 141 ms
41,404 KB
testcase_26 AC 140 ms
41,504 KB
testcase_27 AC 143 ms
41,644 KB
testcase_28 AC 144 ms
41,480 KB
testcase_29 AC 139 ms
41,352 KB
testcase_30 AC 140 ms
41,508 KB
testcase_31 AC 143 ms
41,268 KB
testcase_32 AC 144 ms
41,332 KB
testcase_33 AC 144 ms
41,432 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 (; i < 10000; ++i) {
			ans += 1 / ((i + x) * (i + x));
			res -= 1 / ((i + d) * (i + d));
		}
		ans += res;
		System.out.println(ans);
	}
}
0