結果

問題 No.1350 2019-6problem
ユーザー marroncastlemarroncastle
提出日時 2021-01-20 22:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-06-06 03:07:22
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,908 KB
testcase_01 AC 34 ms
52,316 KB
testcase_02 AC 37 ms
53,340 KB
testcase_03 AC 36 ms
52,180 KB
testcase_04 AC 35 ms
52,504 KB
testcase_05 AC 36 ms
52,524 KB
testcase_06 AC 36 ms
53,840 KB
testcase_07 AC 36 ms
52,692 KB
testcase_08 AC 36 ms
53,008 KB
testcase_09 AC 36 ms
52,948 KB
testcase_10 AC 35 ms
53,564 KB
testcase_11 AC 33 ms
53,748 KB
testcase_12 AC 35 ms
52,744 KB
testcase_13 AC 36 ms
53,676 KB
testcase_14 AC 35 ms
53,688 KB
testcase_15 AC 36 ms
53,148 KB
testcase_16 AC 35 ms
52,800 KB
testcase_17 AC 35 ms
52,440 KB
testcase_18 AC 35 ms
53,000 KB
testcase_19 AC 35 ms
52,436 KB
testcase_20 AC 33 ms
53,752 KB
testcase_21 AC 33 ms
52,072 KB
testcase_22 AC 34 ms
52,336 KB
testcase_23 AC 35 ms
52,612 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