結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
80,120 KB
testcase_01 AC 101 ms
80,200 KB
testcase_02 AC 103 ms
80,000 KB
testcase_03 AC 104 ms
80,252 KB
testcase_04 AC 99 ms
80,204 KB
testcase_05 AC 100 ms
80,144 KB
testcase_06 AC 100 ms
80,112 KB
testcase_07 AC 102 ms
80,028 KB
testcase_08 AC 101 ms
80,128 KB
testcase_09 AC 98 ms
80,048 KB
testcase_10 AC 100 ms
80,084 KB
testcase_11 AC 101 ms
80,096 KB
testcase_12 AC 104 ms
80,128 KB
testcase_13 AC 104 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