結果

問題 No.53 悪の漸化式
ユーザー 👑 KazunKazun
提出日時 2021-04-19 04:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 5,000 ms
コード長 63 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 87,028 KB
実行使用メモリ 89,028 KB
最終ジャッジ日時 2023-09-17 08:13:26
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
88,904 KB
testcase_01 AC 230 ms
88,660 KB
testcase_02 AC 230 ms
88,900 KB
testcase_03 AC 231 ms
88,912 KB
testcase_04 AC 233 ms
88,752 KB
testcase_05 AC 230 ms
88,916 KB
testcase_06 AC 227 ms
88,904 KB
testcase_07 AC 228 ms
89,016 KB
testcase_08 AC 228 ms
88,976 KB
testcase_09 AC 228 ms
88,876 KB
testcase_10 AC 227 ms
88,756 KB
testcase_11 AC 229 ms
88,976 KB
testcase_12 AC 226 ms
88,892 KB
testcase_13 AC 227 ms
88,900 KB
testcase_14 AC 225 ms
88,756 KB
testcase_15 AC 228 ms
88,848 KB
testcase_16 AC 228 ms
89,028 KB
testcase_17 AC 228 ms
88,976 KB
testcase_18 AC 229 ms
88,976 KB
testcase_19 AC 232 ms
88,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal
N=int(input())
print(4*decimal.Decimal(0.75)**N)
0