結果

問題 No.425 ジャンケンの必勝法
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-13 00:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,640 KB
最終ジャッジ日時 2024-05-01 10:41:40
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
76,088 KB
testcase_01 AC 150 ms
75,524 KB
testcase_02 AC 148 ms
75,628 KB
testcase_03 AC 141 ms
75,996 KB
testcase_04 AC 267 ms
76,100 KB
testcase_05 AC 135 ms
75,720 KB
testcase_06 AC 311 ms
76,124 KB
testcase_07 AC 236 ms
76,172 KB
testcase_08 AC 130 ms
75,696 KB
testcase_09 AC 131 ms
76,208 KB
testcase_10 AC 151 ms
75,720 KB
testcase_11 AC 226 ms
76,444 KB
testcase_12 AC 276 ms
76,232 KB
testcase_13 AC 163 ms
75,784 KB
testcase_14 AC 278 ms
76,076 KB
testcase_15 AC 159 ms
75,776 KB
testcase_16 AC 162 ms
75,940 KB
testcase_17 AC 235 ms
76,640 KB
testcase_18 AC 239 ms
76,452 KB
testcase_19 AC 142 ms
75,820 KB
testcase_20 AC 267 ms
75,912 KB
testcase_21 AC 163 ms
75,780 KB
testcase_22 AC 160 ms
75,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())
win = 1 / 3


def dfs(depth, now, P):
    global win
    if depth >= 21:
        return

    # 必勝法使う
    tmp = now * (P/100) * (1/2)
    win += tmp
    Pnext = max(0, P - q)
    dfs(depth + 1, tmp, Pnext)

    # 使わない
    tmp = now * (1 - P/100) * (1/3)
    win += tmp
    Pnext = min(100, P + q)
    dfs(depth + 1, tmp, Pnext)
    return


dfs(0, 1/3, p)
print(win)
0