結果

問題 No.162 8020運動
ユーザー 0w10w1
提出日時 2017-04-27 18:47:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 991 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-09-13 14:51:03
合計ジャッジ時間 2,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 52 ms
62,336 KB
testcase_02 AC 58 ms
65,408 KB
testcase_03 AC 60 ms
67,072 KB
testcase_04 AC 61 ms
66,944 KB
testcase_05 AC 61 ms
66,944 KB
testcase_06 AC 60 ms
66,560 KB
testcase_07 AC 60 ms
67,044 KB
testcase_08 AC 61 ms
67,072 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 58 ms
65,536 KB
testcase_11 AC 51 ms
62,208 KB
testcase_12 AC 50 ms
61,824 KB
testcase_13 AC 60 ms
66,560 KB
testcase_14 AC 42 ms
54,144 KB
testcase_15 AC 42 ms
54,272 KB
testcase_16 AC 49 ms
61,312 KB
testcase_17 AC 42 ms
54,016 KB
testcase_18 AC 60 ms
66,176 KB
testcase_19 AC 57 ms
65,024 KB
testcase_20 AC 57 ms
65,408 KB
testcase_21 AC 57 ms
65,408 KB
testcase_22 AC 58 ms
65,920 KB
testcase_23 AC 57 ms
66,048 KB
testcase_24 AC 58 ms
65,408 KB
testcase_25 AC 60 ms
66,048 KB
testcase_26 AC 42 ms
53,888 KB
testcase_27 AC 53 ms
64,000 KB
testcase_28 AC 60 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

A = int( input() )
P = list( map( lambda x: int( x ) / 100, input().split() ) )

dp = [ 0.0 for i in range( 2 ) ]
dp = [ deepcopy( dp ) for i in range( 14 + 1 ) ]
dp = [ deepcopy( dp ) for i in range( 80 - A + 1 ) ]
for i in range( 1, 14 + 1 ):
  for j in range( 2 ):
    dp[ 0 ][ i ][ j ] = i

for i in range( 1, 80 - A + 1 ): # 何年たつ
  for j in range( 1, 14 + 1 ): # いくつ歯が残る
    for k in range( 2 ): # 最初の歯の左に歯がある
      if j == 1:
        dp[ i ][ j ][ k ] = ( 1 - P[ k ] ) * dp[ i - 1 ][ j ][ 0 ]
      else:
        all_alive = 1.0
        for x in range( j ): # 最初に壊れる歯
          i_die = P[ 1 ] if ( ( x == 0 and k == 0 ) or x + 1 == j ) else P[ 2 ]
          dp[ i ][ j ][ k ] += all_alive * i_die * ( dp[ i - 1 ][ x ][ 0 ] + dp[ i ][ j - x - 1 ][ 1 ] )
          all_alive *= 1 - i_die
        dp[ i ][ j ][ k ] += all_alive * dp[ i - 1 ][ j ][ 0 ]

print( "%.7f" % ( dp[ 80 - A ][ 14 ][ 0 ] * 2 ) )
0