結果

問題 No.915 Plus Or Multiple Operation
ユーザー convexineqconvexineq
提出日時 2019-10-25 22:10:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-24 18:42:35
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,624 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