結果

問題 No.425 ジャンケンの必勝法
ユーザー maspymaspy
提出日時 2020-03-20 01:33:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,580 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-12-14 03:45:41
合計ジャッジ時間 24,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,512 ms
44,088 KB
testcase_01 AC 1,507 ms
44,088 KB
testcase_02 AC 518 ms
44,344 KB
testcase_03 AC 522 ms
43,948 KB
testcase_04 AC 890 ms
43,952 KB
testcase_05 AC 515 ms
44,088 KB
testcase_06 AC 735 ms
44,340 KB
testcase_07 AC 937 ms
44,088 KB
testcase_08 AC 574 ms
44,216 KB
testcase_09 AC 518 ms
44,000 KB
testcase_10 AC 534 ms
43,956 KB
testcase_11 AC 900 ms
44,216 KB
testcase_12 AC 921 ms
44,220 KB
testcase_13 AC 1,527 ms
43,952 KB
testcase_14 AC 1,069 ms
44,344 KB
testcase_15 AC 1,517 ms
44,588 KB
testcase_16 AC 1,564 ms
44,344 KB
testcase_17 AC 881 ms
43,960 KB
testcase_18 AC 506 ms
43,960 KB
testcase_19 AC 541 ms
44,088 KB
testcase_20 AC 1,015 ms
43,956 KB
testcase_21 AC 1,580 ms
44,468 KB
testcase_22 AC 1,502 ms
44,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

p0, q = map(int, read().split())
p0 /= 100
q /= 100


def solve(depth, p):
    if depth > 20:
        return 0.5
    if p < 0:
        p = 0
        return (1 / 3) + solve(depth + 1, p + q) / 3
    if p > 1:
        p = 1
        return (1 / 2) + solve(depth + 1, p - q) / 2
    x = (1 / 3) + solve(depth + 1, p + q) / 3
    y = (1 / 2) + solve(depth + 1, p - q) / 2
    return x * (1 - p) + y * p


x = solve(0, p0)
answer = 1 / 3 + x / 3
print(answer)
0