結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
75,880 KB
testcase_01 AC 133 ms
75,648 KB
testcase_02 AC 129 ms
75,392 KB
testcase_03 AC 128 ms
75,764 KB
testcase_04 AC 228 ms
75,648 KB
testcase_05 AC 130 ms
75,904 KB
testcase_06 AC 256 ms
76,416 KB
testcase_07 AC 217 ms
76,032 KB
testcase_08 AC 126 ms
75,648 KB
testcase_09 AC 126 ms
75,520 KB
testcase_10 AC 142 ms
75,776 KB
testcase_11 AC 210 ms
76,160 KB
testcase_12 AC 215 ms
76,160 KB
testcase_13 AC 136 ms
75,544 KB
testcase_14 AC 218 ms
76,160 KB
testcase_15 AC 135 ms
75,716 KB
testcase_16 AC 135 ms
75,392 KB
testcase_17 AC 203 ms
76,416 KB
testcase_18 AC 216 ms
76,388 KB
testcase_19 AC 128 ms
75,776 KB
testcase_20 AC 206 ms
75,904 KB
testcase_21 AC 136 ms
75,392 KB
testcase_22 AC 134 ms
75,520 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