結果

問題 No.1835 Generalized Monty Hall Problem
ユーザー KudeKude
提出日時 2022-02-11 21:29:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 184 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,884 KB
実行使用メモリ 88,852 KB
最終ジャッジ日時 2024-06-27 17:08:58
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
n, m, k = map(int, input().split())
ans = max(Fraction(m, n), Fraction(m * (m - 1) + (n - m) * m, n * (n - 1 - k)))
print(ans.numerator, ans.denominator)
0