結果

問題 No.782 マイナス進数
ユーザー pasoconhoshii
提出日時 2019-03-18 23:52:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-19 08:25:18
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

T,B = map(int, input().split())

for i in range(T):
    n = int(input())
    if n == 0:
        print(0)
        continue
    ans = []
    t = B
    while n!=0: 
        p = n % t
        if p >= 0:
            ans.append( n % t )
            n //= t
        else:
            ans.append( n % t - t )
            n = (n//t)+1
        
        # t *= B
    ans = list(reversed(ans))
    ans = list(map(str, ans))
    print("".join(ans))
            
        
0