結果

問題 No.1350 2019-6problem
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 22:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-12-23 14:11:28
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,868 KB
testcase_01 AC 34 ms
52,564 KB
testcase_02 AC 34 ms
53,500 KB
testcase_03 AC 35 ms
52,748 KB
testcase_04 AC 33 ms
52,468 KB
testcase_05 AC 33 ms
52,496 KB
testcase_06 AC 38 ms
52,640 KB
testcase_07 AC 35 ms
53,744 KB
testcase_08 AC 34 ms
53,700 KB
testcase_09 AC 34 ms
52,596 KB
testcase_10 AC 33 ms
52,804 KB
testcase_11 AC 34 ms
52,864 KB
testcase_12 AC 32 ms
53,244 KB
testcase_13 AC 34 ms
53,052 KB
testcase_14 AC 33 ms
52,488 KB
testcase_15 AC 33 ms
52,416 KB
testcase_16 AC 36 ms
53,272 KB
testcase_17 AC 34 ms
53,400 KB
testcase_18 AC 35 ms
53,920 KB
testcase_19 AC 37 ms
54,056 KB
testcase_20 AC 34 ms
53,916 KB
testcase_21 AC 33 ms
52,820 KB
testcase_22 AC 33 ms
52,596 KB
testcase_23 AC 32 ms
52,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(target):
  cnt = target//A + target//B - target//(A*B//g)
  if cnt<K:
    return False
  return True

from math import gcd
A, B, K = map(int, input().split())
g = gcd(A,B)
low,high = 0,10**18
mid = (low+high)//2
while high-low>1:
  if check(mid):
    high = mid
  else:
    low = mid
  mid = (low+high)//2
ans = high
print(ans)
0