結果

問題 No.813 ユキちゃんの冒険
ユーザー KentarokumuraKentarokumura
提出日時 2019-04-12 23:09:03
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 388 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,268 KB
最終ジャッジ日時 2024-06-10 13:34:35
合計ジャッジ時間 2,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,344 KB
testcase_01 AC 48 ms
62,600 KB
testcase_02 AC 50 ms
66,184 KB
testcase_03 AC 50 ms
65,816 KB
testcase_04 AC 62 ms
75,696 KB
testcase_05 AC 63 ms
75,660 KB
testcase_06 AC 51 ms
68,332 KB
testcase_07 AC 47 ms
62,404 KB
testcase_08 AC 57 ms
72,708 KB
testcase_09 AC 47 ms
62,876 KB
testcase_10 AC 53 ms
66,572 KB
testcase_11 AC 50 ms
67,128 KB
testcase_12 AC 55 ms
72,580 KB
testcase_13 AC 53 ms
69,964 KB
testcase_14 AC 47 ms
61,884 KB
testcase_15 AC 60 ms
74,852 KB
testcase_16 AC 63 ms
75,528 KB
testcase_17 AC 48 ms
63,764 KB
testcase_18 AC 48 ms
62,684 KB
testcase_19 AC 62 ms
75,676 KB
testcase_20 AC 50 ms
66,840 KB
testcase_21 AC 48 ms
65,324 KB
testcase_22 AC 48 ms
64,576 KB
testcase_23 AC 53 ms
69,352 KB
testcase_24 AC 49 ms
63,048 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(1000):
    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