結果

問題 No.915 Plus Or Multiple Operation
ユーザー tpynerivertpyneriver
提出日時 2019-10-12 20:35:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-11-07 03:19:58
合計ジャッジ時間 1,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

Q = int(readline())
Ans = [None]*Q

for qu in range(Q):
    a, b, c = map(int, readline().split())
    if c == 1:
        Ans[qu] = -1
        continue   
    cnt = 0
    while a > 0:
        if c+1 <= a < 2*c-1:
            cnt += 2
            a = 0
            continue
        elif a % c:
            a -= a%c
        else:
            a //= c
        cnt += 1
    
    Ans[qu] = b*cnt

print('\n'.join(map(str, Ans)))
0