結果

問題 No.53 悪の漸化式
ユーザー rlangevinrlangevin
提出日時 2023-10-27 01:21:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 936 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 81,876 KB
最終ジャッジ日時 2024-09-25 12:47:01
合計ジャッジ時間 3,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
80,104 KB
testcase_01 AC 105 ms
79,892 KB
testcase_02 AC 104 ms
80,372 KB
testcase_03 AC 103 ms
80,112 KB
testcase_04 AC 105 ms
79,968 KB
testcase_05 AC 106 ms
80,268 KB
testcase_06 AC 106 ms
80,108 KB
testcase_07 AC 107 ms
80,104 KB
testcase_08 AC 106 ms
80,104 KB
testcase_09 AC 105 ms
80,188 KB
testcase_10 AC 106 ms
79,760 KB
testcase_11 AC 107 ms
79,756 KB
testcase_12 AC 109 ms
80,196 KB
testcase_13 AC 111 ms
80,128 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

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