結果

問題 No.1230 Hall_and_me
ユーザー tobusakanatobusakana
提出日時 2022-11-05 15:56:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,772 KB
最終ジャッジ日時 2024-07-19 08:45:02
合計ジャッジ時間 2,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,340 KB
testcase_01 AC 42 ms
52,656 KB
testcase_02 AC 38 ms
51,964 KB
testcase_03 AC 34 ms
52,804 KB
testcase_04 AC 34 ms
52,548 KB
testcase_05 AC 32 ms
53,096 KB
testcase_06 AC 34 ms
51,812 KB
testcase_07 AC 33 ms
51,868 KB
testcase_08 AC 32 ms
52,828 KB
testcase_09 AC 31 ms
53,772 KB
testcase_10 AC 32 ms
53,164 KB
testcase_11 AC 34 ms
53,244 KB
testcase_12 AC 31 ms
51,820 KB
testcase_13 AC 33 ms
52,336 KB
testcase_14 AC 34 ms
52,216 KB
testcase_15 AC 34 ms
52,416 KB
testcase_16 AC 33 ms
52,756 KB
testcase_17 AC 34 ms
52,232 KB
testcase_18 AC 35 ms
52,464 KB
testcase_19 AC 34 ms
52,656 KB
testcase_20 AC 34 ms
52,464 KB
testcase_21 AC 33 ms
53,224 KB
testcase_22 AC 33 ms
52,640 KB
testcase_23 AC 33 ms
51,956 KB
testcase_24 AC 32 ms
51,900 KB
testcase_25 AC 32 ms
51,952 KB
testcase_26 AC 33 ms
52,364 KB
testcase_27 AC 34 ms
52,544 KB
testcase_28 AC 34 ms
53,576 KB
testcase_29 AC 33 ms
51,744 KB
testcase_30 AC 34 ms
52,360 KB
testcase_31 AC 35 ms
52,428 KB
testcase_32 AC 34 ms
52,688 KB
testcase_33 AC 33 ms
52,616 KB
testcase_34 AC 33 ms
52,472 KB
testcase_35 AC 33 ms
52,204 KB
testcase_36 AC 32 ms
52,844 KB
testcase_37 AC 32 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rate = list(map(int,input().split()))
M = sum(rate) # 分母

# P,Q,Rのどれを選ぶか、STAYかCHANGEか
# の3 * 2 = 6通りを全探索し、最も確率の高いものを選ぶ

def f(choice, method):
  # 宝がP,Q,Rのそれぞれだった場合の確率を求める。
  res = 0
  for real in range(3):
    r = rate[real] / M # 宝が0-2に入っている確率
    # choiceと一致していて、CHANGEの場合は、確率0
    if choice == real and method == "CHANGE":
      continue
    # choiceと一致しておらず、STAYの場合は、確率0
    if choice != real and method == "STAY":
      continue
    # choiceと一致していて、STAYの場合
    if choice == real and method == "STAY":
      res += r
    # choiceと一致しておらず、CHANGEの場合
    if choice != real and method == "CHANGE":
      res += r
  return res

ans = 0
for choice in range(3):
  for method in ("STAY","CHANGE"):
    val = f(choice, method)
    if ans < val:
      ans = val
      
print(ans)
0