結果

問題 No.1835 Generalized Monty Hall Problem
ユーザー rlangevinrlangevin
提出日時 2023-04-01 23:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 125 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 53,668 KB
最終ジャッジ日時 2024-09-24 13:36:12
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,404 KB
testcase_01 AC 33 ms
52,264 KB
testcase_02 AC 34 ms
52,332 KB
testcase_03 AC 33 ms
52,876 KB
testcase_04 AC 33 ms
52,924 KB
testcase_05 AC 34 ms
52,656 KB
testcase_06 AC 34 ms
53,204 KB
testcase_07 AC 33 ms
52,812 KB
testcase_08 AC 33 ms
52,412 KB
testcase_09 AC 33 ms
53,668 KB
testcase_10 AC 33 ms
52,180 KB
testcase_11 AC 36 ms
51,956 KB
testcase_12 AC 33 ms
52,308 KB
testcase_13 AC 35 ms
52,624 KB
testcase_14 AC 33 ms
52,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N, M, K = map(int, input().split())
P = M * (N - 1)
Q = N * (N - K - 1)
g = gcd(P, Q)
print(P//g, Q//g)
0