結果

問題 No.454 逆2乗和
ユーザー くれちーくれちー
提出日時 2016-12-05 00:06:30
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 23,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 19:30:05
合計ジャッジ時間 49,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,389 ms
5,248 KB
testcase_01 AC 1,373 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1,368 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,388 ms
5,376 KB
testcase_08 AC 1,425 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 1,382 ms
5,376 KB
testcase_11 AC 1,368 ms
5,376 KB
testcase_12 AC 1,401 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,366 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 1,405 ms
5,376 KB
testcase_19 AC 1,368 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,395 ms
5,376 KB
testcase_24 AC 1,357 ms
5,376 KB
testcase_25 AC 1,362 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,387 ms
5,376 KB
testcase_29 AC 1,397 ms
5,376 KB
testcase_30 AC 1,404 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%lf", &x);
      |         ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main() {
	double x;
	scanf("%lf", &x);

	int n;
	double ans = 0.0;

	for (n = 1; n < 1000000000; n++) {
		ans += 1.0 / pow(x + n, 2.0);
	}

	printf("%.10lf\n", ans);
	return 0;
}
0