結果

問題 No.782 マイナス進数
ユーザー nebukuro09nebukuro09
提出日時 2019-01-12 11:48:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 79,664 KB
最終ジャッジ日時 2024-12-17 14:28:16
合計ジャッジ時間 7,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,812 KB
testcase_01 AC 77 ms
75,552 KB
testcase_02 AC 151 ms
79,664 KB
testcase_03 AC 134 ms
78,980 KB
testcase_04 AC 136 ms
79,020 KB
testcase_05 AC 135 ms
79,016 KB
testcase_06 AC 136 ms
79,416 KB
testcase_07 AC 139 ms
79,124 KB
testcase_08 AC 130 ms
78,736 KB
testcase_09 AC 135 ms
79,144 KB
testcase_10 AC 134 ms
79,004 KB
testcase_11 AC 137 ms
79,100 KB
testcase_12 AC 133 ms
79,000 KB
testcase_13 AC 149 ms
79,148 KB
testcase_14 AC 134 ms
78,752 KB
testcase_15 AC 138 ms
79,136 KB
testcase_16 AC 135 ms
79,008 KB
testcase_17 AC 139 ms
79,000 KB
testcase_18 AC 133 ms
79,292 KB
testcase_19 AC 139 ms
79,132 KB
testcase_20 AC 136 ms
78,876 KB
testcase_21 AC 142 ms
78,760 KB
testcase_22 AC 142 ms
79,112 KB
testcase_23 AC 132 ms
78,996 KB
testcase_24 AC 149 ms
78,892 KB
testcase_25 AC 133 ms
79,036 KB
testcase_26 AC 139 ms
78,980 KB
testcase_27 AC 132 ms
79,128 KB
testcase_28 AC 140 ms
79,260 KB
testcase_29 AC 78 ms
75,668 KB
testcase_30 AC 78 ms
75,544 KB
testcase_31 AC 78 ms
75,776 KB
testcase_32 AC 82 ms
76,568 KB
testcase_33 AC 78 ms
75,940 KB
testcase_34 AC 78 ms
75,544 KB
testcase_35 AC 78 ms
75,680 KB
testcase_36 AC 76 ms
75,324 KB
testcase_37 AC 81 ms
75,564 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