結果

問題 No.915 Plus Or Multiple Operation
ユーザー nadare
提出日時 2019-10-25 22:30:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-11-07 03:33:38
合計ジャッジ時間 1,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 2 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
def inpl(): return list(map(int, input().split()))

for _ in range(int(input())):
    a, b, c = inpl()
    if c == 1:
        print(a*b)
        continue

    Q = []
    ans = 0
    
    while a:
        a, m = divmod(a, c)
        Q.append(m)
    
#    print(Q[::-1], end = " ")

    if (len(Q) >= 2) and (Q[-1] == 1) and (1 <= Q[-2] <= c-2):
        ans += 3
        Q.pop()
        Q.pop()
    
    while Q:
        x = Q.pop()
        ans += 1 + (x > 0)
    
    print(ans-1)
0