結果

問題 No.813 ユキちゃんの冒険
ユーザー rookzenorookzeno
提出日時 2019-04-12 22:55:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 83,040 KB
最終ジャッジ日時 2025-01-02 03:34:32
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,904 KB
testcase_01 AC 50 ms
65,640 KB
testcase_02 AC 97 ms
76,968 KB
testcase_03 AC 88 ms
77,220 KB
testcase_04 AC 322 ms
83,040 KB
testcase_05 AC 291 ms
81,780 KB
testcase_06 AC 114 ms
77,488 KB
testcase_07 AC 58 ms
74,972 KB
testcase_08 AC 218 ms
78,796 KB
testcase_09 AC 55 ms
70,464 KB
testcase_10 AC 100 ms
77,300 KB
testcase_11 AC 80 ms
77,044 KB
testcase_12 AC 230 ms
78,968 KB
testcase_13 AC 119 ms
77,652 KB
testcase_14 WA -
testcase_15 AC 281 ms
80,480 KB
testcase_16 AC 276 ms
81,208 KB
testcase_17 AC 67 ms
76,964 KB
testcase_18 AC 52 ms
67,636 KB
testcase_19 AC 381 ms
82,760 KB
testcase_20 AC 88 ms
77,048 KB
testcase_21 AC 65 ms
76,936 KB
testcase_22 AC 68 ms
76,976 KB
testcase_23 AC 136 ms
77,624 KB
testcase_24 AC 38 ms
55,004 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