結果

問題 No.1350 2019-6problem
ユーザー ibylogibylog
提出日時 2021-01-17 15:11:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-07 04:15:53
合計ジャッジ時間 2,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 WA -
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a, b, k = map(int, input().split())
def f(X):
    return X//a + X//b - X//(a*b)
l = 0
r = 114514114514114514114514114514114514114514114514114514114514114514114514
while (r - l > 1):
    med = (r + l)//2
    if f(med) >= k:r = med
    else: l = med
print(r)
0