結果

問題 No.1835 Generalized Monty Hall Problem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-12 10:14:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,468 KB
最終ジャッジ日時 2024-06-28 12:05:45
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,656 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 40 ms
52,328 KB
testcase_03 AC 39 ms
53,400 KB
testcase_04 AC 39 ms
52,792 KB
testcase_05 AC 39 ms
52,856 KB
testcase_06 AC 40 ms
52,472 KB
testcase_07 AC 39 ms
52,572 KB
testcase_08 AC 40 ms
52,248 KB
testcase_09 AC 39 ms
52,676 KB
testcase_10 AC 39 ms
53,264 KB
testcase_11 AC 39 ms
52,660 KB
testcase_12 AC 39 ms
53,468 KB
testcase_13 AC 39 ms
52,644 KB
testcase_14 AC 38 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n,m,k = map(int,input().split())

a = (n-m)
b = (n-k-1)
x = a*m
y = n*b
g = gcd(x,y)
x1 = x//g
y1 = y//g

a = m
b = (n-k-1)
x = a*(m-1)
y = n*b
g = gcd(x,y)
x2 = x//g
y2 = y//g

a = x1*y2+x2*y1
b = y1*y2
g = gcd(a,b)
a //= g
b //= g
print(a,b)
0