結果

問題 No.53 悪の漸化式
ユーザー kohei2019kohei2019
提出日時 2021-03-18 12:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 34 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 87,384 KB
実行使用メモリ 71,820 KB
最終ジャッジ日時 2023-08-10 10:00:06
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,252 KB
testcase_01 AC 69 ms
71,400 KB
testcase_02 AC 68 ms
71,404 KB
testcase_03 AC 69 ms
71,716 KB
testcase_04 AC 71 ms
71,664 KB
testcase_05 AC 68 ms
71,772 KB
testcase_06 AC 69 ms
71,764 KB
testcase_07 AC 74 ms
71,812 KB
testcase_08 AC 69 ms
71,820 KB
testcase_09 AC 68 ms
71,780 KB
testcase_10 AC 70 ms
71,548 KB
testcase_11 AC 68 ms
71,580 KB
testcase_12 AC 70 ms
71,532 KB
testcase_13 AC 71 ms
71,648 KB
testcase_14 AC 72 ms
71,556 KB
testcase_15 AC 70 ms
71,540 KB
testcase_16 AC 70 ms
71,652 KB
testcase_17 AC 70 ms
71,700 KB
testcase_18 AC 73 ms
71,544 KB
testcase_19 AC 70 ms
71,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(4*(3/4)**N)
0