結果

問題 No.782 マイナス進数
ユーザー nebukuro09nebukuro09
提出日時 2019-01-12 11:16:33
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 2,825 ms
コンパイル使用メモリ 75,924 KB
実行使用メモリ 79,648 KB
最終ジャッジ日時 2024-12-16 11:08:21
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,544 KB
testcase_01 AC 77 ms
75,692 KB
testcase_02 AC 161 ms
79,648 KB
testcase_03 AC 136 ms
78,852 KB
testcase_04 AC 134 ms
78,524 KB
testcase_05 AC 133 ms
78,856 KB
testcase_06 AC 134 ms
78,976 KB
testcase_07 AC 137 ms
78,600 KB
testcase_08 AC 133 ms
78,880 KB
testcase_09 AC 137 ms
79,232 KB
testcase_10 AC 139 ms
79,352 KB
testcase_11 AC 135 ms
78,744 KB
testcase_12 AC 135 ms
78,996 KB
testcase_13 AC 146 ms
78,968 KB
testcase_14 AC 134 ms
78,744 KB
testcase_15 AC 135 ms
78,780 KB
testcase_16 AC 135 ms
78,724 KB
testcase_17 AC 139 ms
78,764 KB
testcase_18 AC 134 ms
78,500 KB
testcase_19 AC 140 ms
79,008 KB
testcase_20 AC 133 ms
78,988 KB
testcase_21 AC 140 ms
78,880 KB
testcase_22 AC 142 ms
78,888 KB
testcase_23 AC 136 ms
78,848 KB
testcase_24 AC 150 ms
79,140 KB
testcase_25 AC 133 ms
78,620 KB
testcase_26 AC 141 ms
78,748 KB
testcase_27 AC 136 ms
78,892 KB
testcase_28 AC 139 ms
78,996 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve():
    N = int(raw_input())
    ans = []
    while N != 0:
        m = N % B
        if m < 0:
            m -= B
        ans.append(m)
        N /= -B
        N *= -1
    print "".join(map(str, reversed(ans)))

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