結果

問題 No.782 マイナス進数
ユーザー ayaoniayaoni
提出日時 2020-12-08 14:11:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 76,516 KB
最終ジャッジ日時 2024-09-17 14:38:04
合計ジャッジ時間 3,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,160 KB
testcase_01 AC 31 ms
53,140 KB
testcase_02 AC 50 ms
73,512 KB
testcase_03 AC 53 ms
73,428 KB
testcase_04 AC 56 ms
74,552 KB
testcase_05 AC 51 ms
72,864 KB
testcase_06 AC 53 ms
73,596 KB
testcase_07 AC 62 ms
75,944 KB
testcase_08 AC 53 ms
73,632 KB
testcase_09 AC 51 ms
72,604 KB
testcase_10 AC 52 ms
72,060 KB
testcase_11 AC 61 ms
76,516 KB
testcase_12 AC 56 ms
76,056 KB
testcase_13 AC 68 ms
76,424 KB
testcase_14 AC 57 ms
76,496 KB
testcase_15 AC 60 ms
76,312 KB
testcase_16 AC 57 ms
76,060 KB
testcase_17 AC 63 ms
76,348 KB
testcase_18 AC 57 ms
76,072 KB
testcase_19 AC 60 ms
75,928 KB
testcase_20 AC 56 ms
76,120 KB
testcase_21 AC 61 ms
76,412 KB
testcase_22 AC 58 ms
75,992 KB
testcase_23 AC 53 ms
75,196 KB
testcase_24 AC 70 ms
76,188 KB
testcase_25 AC 57 ms
76,200 KB
testcase_26 AC 60 ms
76,216 KB
testcase_27 AC 62 ms
76,352 KB
testcase_28 AC 59 ms
76,248 KB
testcase_29 AC 33 ms
52,540 KB
testcase_30 AC 31 ms
52,936 KB
testcase_31 AC 31 ms
52,360 KB
testcase_32 AC 35 ms
59,616 KB
testcase_33 AC 32 ms
52,540 KB
testcase_34 AC 31 ms
53,692 KB
testcase_35 AC 32 ms
52,668 KB
testcase_36 AC 32 ms
54,004 KB
testcase_37 AC 35 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


T,B = MI()
B = -B

for _ in range(T):
    N = I()
    if N == 0:
        print(0)
        continue
    b = 0
    ANS = []
    while N:
        if b == 0:
            r = N % B
            N //= B
            ANS.append(str(r))
        else:
            r = (-N) % B
            N = (N+r)//B
            ANS.append(str(r))
        b = 1-b
    ANS.reverse()
    print(''.join(ANS))
0