結果

問題 No.53 悪の漸化式
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:40:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 81,436 KB
最終ジャッジ日時 2024-12-14 06:14:10
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
80,048 KB
testcase_01 AC 118 ms
80,044 KB
testcase_02 AC 118 ms
80,196 KB
testcase_03 AC 119 ms
79,956 KB
testcase_04 AC 115 ms
80,052 KB
testcase_05 AC 118 ms
80,024 KB
testcase_06 AC 118 ms
79,900 KB
testcase_07 AC 120 ms
80,104 KB
testcase_08 AC 120 ms
80,192 KB
testcase_09 AC 122 ms
80,024 KB
testcase_10 AC 123 ms
80,132 KB
testcase_11 AC 119 ms
79,880 KB
testcase_12 AC 121 ms
79,884 KB
testcase_13 AC 121 ms
80,024 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

n = int(input())
if n == 0:
    print(4)
    exit()
dp = [Decimal(4), Decimal(3)] + [0] * (n - 1)
for i in range(2, n + 1):
    dp[i] = 19 * dp[i - 1] - 12 * dp[i - 2]
    dp[i] /= Decimal(4)
print(dp[n])

0