結果

問題 No.53 悪の漸化式
ユーザー rlangevinrlangevin
提出日時 2023-10-27 01:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 81,864 KB
最終ジャッジ日時 2024-09-25 12:49:21
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
80,516 KB
testcase_01 AC 109 ms
79,756 KB
testcase_02 AC 107 ms
80,336 KB
testcase_03 AC 112 ms
80,172 KB
testcase_04 AC 107 ms
80,324 KB
testcase_05 AC 108 ms
80,300 KB
testcase_06 AC 107 ms
80,444 KB
testcase_07 AC 108 ms
80,320 KB
testcase_08 AC 107 ms
80,188 KB
testcase_09 AC 108 ms
79,972 KB
testcase_10 AC 108 ms
80,044 KB
testcase_11 AC 110 ms
80,160 KB
testcase_12 AC 112 ms
80,280 KB
testcase_13 AC 113 ms
80,076 KB
testcase_14 AC 114 ms
80,412 KB
testcase_15 AC 121 ms
81,508 KB
testcase_16 AC 125 ms
81,864 KB
testcase_17 AC 127 ms
81,352 KB
testcase_18 AC 128 ms
81,516 KB
testcase_19 AC 127 ms
81,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

N = int(input())
if N == 0:
    print(4)
elif N == 1:
    print(3)
else:
    a0, a1 = Decimal(4), Decimal(3)
    getcontext().prec = 100
    for i in range(N - 1):
        a2 = (a1 * 19 - 12 * a0)/4
        a1, a0 = a2, a1
    print(a2)
0