結果

問題 No.53 悪の漸化式
ユーザー kk
提出日時 2021-04-19 04:34:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-07-04 04:57:17
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
81,572 KB
testcase_01 AC 138 ms
81,792 KB
testcase_02 AC 138 ms
81,664 KB
testcase_03 AC 136 ms
81,664 KB
testcase_04 AC 133 ms
81,792 KB
testcase_05 AC 136 ms
81,712 KB
testcase_06 AC 136 ms
81,868 KB
testcase_07 AC 136 ms
81,792 KB
testcase_08 AC 139 ms
81,428 KB
testcase_09 AC 137 ms
82,048 KB
testcase_10 AC 136 ms
81,784 KB
testcase_11 AC 134 ms
81,920 KB
testcase_12 AC 136 ms
81,548 KB
testcase_13 AC 138 ms
81,728 KB
testcase_14 AC 134 ms
81,920 KB
testcase_15 AC 134 ms
81,664 KB
testcase_16 AC 134 ms
81,720 KB
testcase_17 AC 136 ms
81,792 KB
testcase_18 AC 134 ms
81,664 KB
testcase_19 AC 137 ms
81,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

def main():
  getcontext().prec = 100
  
  n = int(input())
  a = [0 for _ in range(101)]
  
  a[0] = Decimal(4)
  a[1] = Decimal(3)

  for i in range(2, 101):
    a[i] = (Decimal(19) * a[i-1] - Decimal(12) * a[i-2]) / Decimal(4)

  print("{:.20f}".format(a[n]))
  

if __name__ == '__main__':
  main()
  
0