結果

問題 No.813 ユキちゃんの冒険
ユーザー rookzenorookzeno
提出日時 2019-04-12 23:11:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 90,660 KB
最終ジャッジ日時 2024-06-10 13:35:02
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,984 KB
testcase_01 AC 61 ms
68,904 KB
testcase_02 AC 127 ms
77,448 KB
testcase_03 AC 117 ms
76,920 KB
testcase_04 AC 42 ms
54,272 KB
testcase_05 AC 605 ms
88,120 KB
testcase_06 AC 178 ms
77,620 KB
testcase_07 AC 71 ms
76,640 KB
testcase_08 AC 559 ms
81,188 KB
testcase_09 AC 63 ms
76,436 KB
testcase_10 AC 140 ms
77,580 KB
testcase_11 AC 106 ms
76,856 KB
testcase_12 AC 394 ms
81,128 KB
testcase_13 AC 198 ms
78,208 KB
testcase_14 WA -
testcase_15 AC 983 ms
84,956 KB
testcase_16 AC 537 ms
86,376 KB
testcase_17 AC 76 ms
76,684 KB
testcase_18 AC 57 ms
73,508 KB
testcase_19 AC 728 ms
90,660 KB
testcase_20 AC 127 ms
76,620 KB
testcase_21 AC 74 ms
76,500 KB
testcase_22 AC 73 ms
76,472 KB
testcase_23 AC 397 ms
78,320 KB
testcase_24 AC 39 ms
55,316 KB
testcase_25 AC 40 ms
55,248 KB
権限があれば一括ダウンロードができます

ソースコード

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
if p + q == 1:
    print(1-q**n)
    exit()
for i in range(6*n*2):
    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