結果

問題 No.454 逆2乗和
ユーザー 37zigen37zigen
提出日時 2016-12-01 00:28:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-05-05 15:55:40
合計ジャッジ時間 8,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,852 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 108 ms
40,812 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 121 ms
41,560 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 131 ms
41,660 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 120 ms
41,508 KB
testcase_21 AC 119 ms
40,892 KB
testcase_22 WA -
testcase_23 AC 123 ms
41,712 KB
testcase_24 AC 119 ms
40,820 KB
testcase_25 AC 121 ms
41,056 KB
testcase_26 AC 122 ms
41,356 KB
testcase_27 AC 120 ms
41,564 KB
testcase_28 AC 108 ms
40,932 KB
testcase_29 AC 112 ms
40,872 KB
testcase_30 AC 127 ms
41,596 KB
testcase_31 AC 112 ms
41,196 KB
testcase_32 AC 126 ms
40,772 KB
testcase_33 AC 112 ms
40,980 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