結果

問題 No.425 ジャンケンの必勝法
ユーザー maspymaspy
提出日時 2020-03-20 01:33:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,503 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,468 KB
最終ジャッジ日時 2024-05-08 03:39:41
合計ジャッジ時間 23,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,416 ms
44,224 KB
testcase_01 AC 1,413 ms
44,092 KB
testcase_02 AC 489 ms
44,336 KB
testcase_03 AC 486 ms
44,468 KB
testcase_04 AC 858 ms
43,964 KB
testcase_05 AC 494 ms
44,208 KB
testcase_06 AC 746 ms
44,088 KB
testcase_07 AC 912 ms
44,208 KB
testcase_08 AC 550 ms
44,468 KB
testcase_09 AC 485 ms
44,092 KB
testcase_10 AC 490 ms
44,348 KB
testcase_11 AC 864 ms
43,932 KB
testcase_12 AC 925 ms
44,216 KB
testcase_13 AC 1,503 ms
44,340 KB
testcase_14 AC 1,114 ms
44,340 KB
testcase_15 AC 1,486 ms
44,084 KB
testcase_16 AC 1,450 ms
43,828 KB
testcase_17 AC 945 ms
44,132 KB
testcase_18 AC 512 ms
43,956 KB
testcase_19 AC 493 ms
43,824 KB
testcase_20 AC 964 ms
43,824 KB
testcase_21 AC 1,433 ms
43,956 KB
testcase_22 AC 1,461 ms
43,824 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