結果

問題 No.782 マイナス進数
ユーザー ayaoniayaoni
提出日時 2020-12-08 14:09:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 76,372 KB
最終ジャッジ日時 2024-09-17 14:38:00
合計ジャッジ時間 4,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,672 KB
testcase_01 AC 34 ms
52,080 KB
testcase_02 AC 55 ms
72,304 KB
testcase_03 AC 56 ms
74,024 KB
testcase_04 AC 57 ms
74,408 KB
testcase_05 AC 57 ms
73,800 KB
testcase_06 AC 56 ms
72,884 KB
testcase_07 AC 65 ms
76,324 KB
testcase_08 AC 59 ms
73,512 KB
testcase_09 AC 55 ms
71,992 KB
testcase_10 AC 55 ms
71,948 KB
testcase_11 AC 63 ms
76,104 KB
testcase_12 AC 68 ms
75,752 KB
testcase_13 AC 77 ms
75,996 KB
testcase_14 AC 62 ms
75,796 KB
testcase_15 AC 64 ms
76,052 KB
testcase_16 AC 62 ms
75,956 KB
testcase_17 AC 65 ms
76,252 KB
testcase_18 AC 63 ms
76,128 KB
testcase_19 AC 65 ms
75,936 KB
testcase_20 AC 61 ms
76,052 KB
testcase_21 AC 67 ms
76,372 KB
testcase_22 AC 65 ms
76,052 KB
testcase_23 AC 63 ms
74,320 KB
testcase_24 AC 80 ms
76,060 KB
testcase_25 AC 68 ms
76,000 KB
testcase_26 AC 70 ms
76,096 KB
testcase_27 AC 64 ms
75,864 KB
testcase_28 AC 61 ms
76,048 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 #

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()
    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