結果

問題 No.65 回数の期待値の練習
ユーザー TawaraTawara
提出日時 2015-10-21 02:09:20
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 328 ms / 5,000 ms
コード長 95 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 80,648 KB
最終ジャッジ日時 2024-07-22 11:08:38
合計ジャッジ時間 3,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,928 KB
testcase_01 AC 77 ms
75,452 KB
testcase_02 AC 71 ms
75,684 KB
testcase_03 AC 74 ms
75,300 KB
testcase_04 AC 73 ms
75,684 KB
testcase_05 AC 75 ms
75,556 KB
testcase_06 AC 74 ms
75,660 KB
testcase_07 AC 75 ms
75,812 KB
testcase_08 AC 78 ms
76,940 KB
testcase_09 AC 85 ms
77,720 KB
testcase_10 AC 102 ms
78,220 KB
testcase_11 AC 98 ms
78,224 KB
testcase_12 AC 111 ms
78,784 KB
testcase_13 AC 131 ms
78,880 KB
testcase_14 AC 176 ms
79,812 KB
testcase_15 AC 190 ms
79,448 KB
testcase_16 AC 219 ms
79,508 KB
testcase_17 AC 184 ms
79,268 KB
testcase_18 AC 278 ms
79,972 KB
testcase_19 AC 328 ms
80,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = input()
def e(n):
	return 1 + sum(e(n+i+1) for i in range(6))/6. if n < K else 0
print e(0)
0