結果

問題 No.915 Plus Or Multiple Operation
ユーザー convexineqconvexineq
提出日時 2019-10-25 22:10:40
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 10,908 KB
実行使用メモリ 8,008 KB
最終ジャッジ日時 2023-08-07 00:23:50
合計ジャッジ時間 1,221 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,876 KB
testcase_01 AC 15 ms
8,008 KB
testcase_02 AC 18 ms
7,964 KB
testcase_03 AC 15 ms
7,904 KB
testcase_04 AC 15 ms
8,008 KB
testcase_05 AC 16 ms
7,976 KB
testcase_06 AC 16 ms
7,872 KB
testcase_07 AC 16 ms
7,964 KB
testcase_08 AC 15 ms
7,888 KB
testcase_09 AC 15 ms
7,800 KB
testcase_10 AC 15 ms
7,904 KB
testcase_11 AC 15 ms
7,932 KB
testcase_12 AC 16 ms
7,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
#sys.setrecursionlimit(10**6)
readline = sys.stdin.readline 

#from math import gcd

def ans(a,b,c):
    if a == 0: return 0
    elif a%c==0:
        return ans(a//c,b,c) +b
    else:
        if a < c: return b
        r = a%c
        if r == c-1:
            return ans(a//c*c,b,c) + b
        else:
            return min(ans(a//c*c,b,c)+b, ans(a-(r+c),b,c)+2*b)





q = int(input())
for _ in range(q):
    a,b,c = [int(i) for i in readline().split()]
    
    if c == 1:
        if a == 0: print(0)
        else: print(-1)
    else: print(ans(a,b,c))


0