結果

問題 No.53 悪の漸化式
ユーザー gew1fw
提出日時 2025-06-12 15:54:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2025-06-12 15:54:40
合計ジャッジ時間 1,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
result = 4.0 * (3.0 / 4.0) ** n
print("{0:.8f}".format(result))
0