結果

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

ソースコード

diff #

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