結果

問題 No.782 マイナス進数
ユーザー nebukuro09nebukuro09
提出日時 2019-01-12 11:48:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 76,316 KB
実行使用メモリ 79,532 KB
最終ジャッジ日時 2024-05-09 20:57:02
合計ジャッジ時間 6,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,328 KB
testcase_01 AC 74 ms
75,296 KB
testcase_02 AC 132 ms
79,532 KB
testcase_03 AC 126 ms
78,748 KB
testcase_04 AC 128 ms
79,148 KB
testcase_05 AC 125 ms
79,288 KB
testcase_06 AC 127 ms
79,252 KB
testcase_07 AC 145 ms
79,044 KB
testcase_08 AC 123 ms
79,004 KB
testcase_09 AC 128 ms
78,900 KB
testcase_10 AC 125 ms
79,144 KB
testcase_11 AC 130 ms
78,852 KB
testcase_12 AC 125 ms
78,864 KB
testcase_13 AC 138 ms
78,996 KB
testcase_14 AC 124 ms
79,112 KB
testcase_15 AC 128 ms
79,244 KB
testcase_16 AC 127 ms
79,024 KB
testcase_17 AC 132 ms
79,036 KB
testcase_18 AC 125 ms
78,764 KB
testcase_19 AC 134 ms
79,164 KB
testcase_20 AC 126 ms
79,008 KB
testcase_21 AC 135 ms
78,888 KB
testcase_22 AC 135 ms
79,392 KB
testcase_23 AC 128 ms
79,036 KB
testcase_24 AC 143 ms
78,876 KB
testcase_25 AC 129 ms
78,904 KB
testcase_26 AC 135 ms
79,084 KB
testcase_27 AC 129 ms
79,152 KB
testcase_28 AC 132 ms
79,260 KB
testcase_29 AC 74 ms
75,692 KB
testcase_30 AC 73 ms
75,676 KB
testcase_31 AC 76 ms
75,656 KB
testcase_32 AC 78 ms
76,716 KB
testcase_33 AC 74 ms
75,304 KB
testcase_34 AC 73 ms
75,564 KB
testcase_35 AC 77 ms
75,836 KB
testcase_36 AC 73 ms
75,548 KB
testcase_37 AC 76 ms
75,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T, B = map(int, raw_input().split())
B *= -1

def solve():
    N = int(raw_input())

    if N == 0:
        print 0
        return

    ans = []
    t = 0
    while N != 0:
        m = N % B
        if t == 0 or m == 0:
            ans.append(m)
            N /= B
        else:
            ans.append(B - m)
            N += B - m
            N /= B
        t ^= 1
    print "".join(map(str, reversed(ans)))


for _ in xrange(T):
    solve()
0