結果

問題 No.1862 Copy and Paste
ユーザー ChipppppChippppp
提出日時 2021-12-24 11:22:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 504 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-14 08:30:52
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 26 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from math import inf, ceil
  a, b = map(int, input().split())
  n = int(input())
  if n == 1:
    exit(print(1))
  ans = inf
  for i in range(1, n + 1):
    p = ceil(n ** (1 / i))
    ok, ng = 0, i
    while ng - ok > 1:
      mid = (ok + ng) // 2
      if (p - 1) ** mid * p ** (i - mid) >= n:
        ok = mid
      else:
        ng = mid
    ans = min(ans, (a + b * (p - 2)) * ok + (a + b * (p - 1)) * (i - ok))
    if p == 2:
      break
  print(ans)
if __name__ == '__main__':
  main()
0