結果

問題 No.813 ユキちゃんの冒険
ユーザー KentarokumuraKentarokumura
提出日時 2019-04-13 00:59:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 76,400 KB
最終ジャッジ日時 2025-01-02 04:16:22
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,092 KB
testcase_01 AC 48 ms
64,472 KB
testcase_02 AC 70 ms
76,396 KB
testcase_03 AC 68 ms
76,380 KB
testcase_04 AC 105 ms
76,232 KB
testcase_05 AC 111 ms
75,968 KB
testcase_06 AC 78 ms
75,972 KB
testcase_07 AC 52 ms
70,484 KB
testcase_08 AC 160 ms
76,240 KB
testcase_09 AC 50 ms
68,836 KB
testcase_10 AC 73 ms
76,092 KB
testcase_11 AC 63 ms
76,400 KB
testcase_12 AC 123 ms
76,256 KB
testcase_13 AC 77 ms
76,104 KB
testcase_14 AC 48 ms
64,280 KB
testcase_15 AC 159 ms
76,324 KB
testcase_16 AC 97 ms
76,248 KB
testcase_17 AC 56 ms
74,732 KB
testcase_18 AC 49 ms
66,388 KB
testcase_19 AC 166 ms
76,364 KB
testcase_20 AC 68 ms
75,976 KB
testcase_21 AC 56 ms
72,656 KB
testcase_22 AC 55 ms
73,008 KB
testcase_23 AC 212 ms
76,312 KB
testcase_24 AC 50 ms
65,456 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