結果

問題 No.813 ユキちゃんの冒険
ユーザー rookzenorookzeno
提出日時 2019-04-12 22:55:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 82,580 KB
最終ジャッジ日時 2024-06-10 13:32:59
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,280 KB
testcase_01 AC 50 ms
64,864 KB
testcase_02 AC 92 ms
76,760 KB
testcase_03 AC 85 ms
76,448 KB
testcase_04 AC 309 ms
82,244 KB
testcase_05 AC 282 ms
81,784 KB
testcase_06 AC 116 ms
76,832 KB
testcase_07 AC 59 ms
74,724 KB
testcase_08 AC 205 ms
78,664 KB
testcase_09 AC 52 ms
69,392 KB
testcase_10 AC 94 ms
76,892 KB
testcase_11 AC 84 ms
77,216 KB
testcase_12 AC 225 ms
78,776 KB
testcase_13 AC 123 ms
77,264 KB
testcase_14 WA -
testcase_15 AC 280 ms
80,200 KB
testcase_16 AC 279 ms
80,544 KB
testcase_17 AC 66 ms
76,748 KB
testcase_18 AC 51 ms
68,632 KB
testcase_19 AC 378 ms
81,688 KB
testcase_20 AC 86 ms
76,520 KB
testcase_21 AC 68 ms
76,496 KB
testcase_22 AC 70 ms
76,492 KB
testcase_23 AC 131 ms
77,304 KB
testcase_24 AC 40 ms
54,124 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
sys.setrecursionlimit(20000000)
input = sys.stdin.readline
n = int(input())
p = float(input())
q = float(input())
dp = [[0,0]for i in range(n+2)]
dp[1][0] = 1
for i in range(5*n):
    dp2 = [[0,0]for i in range(n+2)]
    for j in range(n,0,-1):
        dp2[j+1][0] += dp[j][0]*q
        dp2[j-1][1] += dp[j][1]*q
        dp2[j-1][1] += dp[j][0]*p
        dp2[j+1][0] += dp[j][1]*p
    dp2[0][0] += dp[0][0]
    dp2[0][1] += dp[0][1]
    dp = dp2
print(sum(dp[0]))
0