結果

問題 No.425 ジャンケンの必勝法
ユーザー convexineqconvexineq
提出日時 2021-02-23 06:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 75,684 KB
最終ジャッジ日時 2024-09-22 03:36:31
合計ジャッジ時間 2,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 36 ms
52,068 KB
testcase_02 AC 36 ms
52,820 KB
testcase_03 AC 47 ms
62,740 KB
testcase_04 AC 51 ms
69,364 KB
testcase_05 AC 47 ms
62,924 KB
testcase_06 AC 49 ms
70,588 KB
testcase_07 AC 48 ms
68,592 KB
testcase_08 AC 46 ms
63,344 KB
testcase_09 AC 46 ms
61,944 KB
testcase_10 AC 34 ms
52,704 KB
testcase_11 AC 43 ms
60,320 KB
testcase_12 AC 45 ms
63,568 KB
testcase_13 AC 55 ms
75,628 KB
testcase_14 AC 45 ms
64,780 KB
testcase_15 AC 43 ms
60,364 KB
testcase_16 AC 44 ms
61,292 KB
testcase_17 AC 42 ms
61,732 KB
testcase_18 AC 38 ms
53,152 KB
testcase_19 AC 40 ms
59,188 KB
testcase_20 AC 43 ms
60,496 KB
testcase_21 AC 54 ms
75,684 KB
testcase_22 AC 53 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q = map(lambda x: int(x)/100,input().split())
ans = 1/3
st = [(1/3,p)] #prob, p, used?
while st:
    prob, p = st.pop()
    if prob < 1e-12: continue
    ans += prob*((1.0-p)/3 + p/2)
    st.append((prob*((1.0-p)/3),min(1.0,p+q)))
    st.append((prob*p/2,max(0.0,p-q)))
print(ans)
0