結果

問題 No.53 悪の漸化式
ユーザー HiroakiSoftwareHiroakiSoftware
提出日時 2014-10-30 23:29:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 24,064 KB
実行使用メモリ 8,224 KB
最終ジャッジ日時 2024-06-09 18:01:16
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 0 ms
6,948 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 0 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d", &N);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

/*
yukicoder No.53
作成者:ヒロソフ
*/
#include <stdio.h>
double Calc(int k);
int main(void) {
	int N;
	scanf("%d", &N);
	printf("%.8f\n", Calc(N));
	return 0;
}
double Calc(int k) {
	if (k == 0) return 4;
	else if (k == 1) return 3;
	else return (19.0 * Calc(k - 1) - 12.0 * Calc(k - 2)) / 4.0;
}
0