結果

問題 No.813 ユキちゃんの冒険
ユーザー KentarokumuraKentarokumura
提出日時 2019-04-13 00:59:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 76,088 KB
最終ジャッジ日時 2024-06-10 13:52:25
合計ジャッジ時間 3,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,152 KB
testcase_01 AC 49 ms
65,152 KB
testcase_02 AC 70 ms
75,800 KB
testcase_03 AC 66 ms
75,664 KB
testcase_04 AC 103 ms
75,576 KB
testcase_05 AC 104 ms
75,776 KB
testcase_06 AC 78 ms
75,516 KB
testcase_07 AC 52 ms
72,160 KB
testcase_08 AC 155 ms
75,844 KB
testcase_09 AC 51 ms
68,144 KB
testcase_10 AC 72 ms
75,732 KB
testcase_11 AC 65 ms
75,660 KB
testcase_12 AC 119 ms
75,580 KB
testcase_13 AC 76 ms
76,088 KB
testcase_14 AC 48 ms
64,656 KB
testcase_15 AC 153 ms
75,596 KB
testcase_16 AC 94 ms
75,540 KB
testcase_17 AC 56 ms
73,860 KB
testcase_18 AC 50 ms
67,976 KB
testcase_19 AC 162 ms
75,780 KB
testcase_20 AC 67 ms
75,808 KB
testcase_21 AC 57 ms
73,716 KB
testcase_22 AC 57 ms
73,656 KB
testcase_23 AC 208 ms
75,856 KB
testcase_24 AC 49 ms
64,532 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N=int(input())
q=float(input())
p=float(input())
if N==1:
    print(q)
    sys.exit()
dp=[0.0]*N
dp1=[0.0]*N
dp[0]=1
ans=0
for k in range(5000):
    ndp=[0.0]*N
    ndp1=[0.0]*N
    for i in range(1,N):
        ndp[i]=p*dp[i-1]+q*dp1[i]
    ndp1[N-1]=q*dp[N-1]
    for i in range(N-2,-1,-1):
        ndp1[i]=p*dp1[i+1]+q*dp[i]
    dp=ndp
    dp1=ndp1
    ans+=dp1[0]
print(ans)
0