結果

問題 No.782 マイナス進数
ユーザー koba-e964koba-e964
提出日時 2021-12-11 15:03:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-07-19 20:06:14
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,820 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 68 ms
76,112 KB
testcase_03 AC 72 ms
76,440 KB
testcase_04 AC 65 ms
76,416 KB
testcase_05 AC 63 ms
76,412 KB
testcase_06 AC 69 ms
76,116 KB
testcase_07 AC 66 ms
76,400 KB
testcase_08 AC 62 ms
76,224 KB
testcase_09 AC 65 ms
76,204 KB
testcase_10 AC 67 ms
76,000 KB
testcase_11 AC 66 ms
76,180 KB
testcase_12 AC 69 ms
76,400 KB
testcase_13 AC 73 ms
76,108 KB
testcase_14 AC 67 ms
76,160 KB
testcase_15 AC 67 ms
76,120 KB
testcase_16 AC 67 ms
76,416 KB
testcase_17 AC 67 ms
76,180 KB
testcase_18 AC 61 ms
76,108 KB
testcase_19 AC 75 ms
76,032 KB
testcase_20 AC 66 ms
76,336 KB
testcase_21 AC 70 ms
76,032 KB
testcase_22 AC 70 ms
76,288 KB
testcase_23 AC 72 ms
76,252 KB
testcase_24 AC 82 ms
76,288 KB
testcase_25 AC 73 ms
76,348 KB
testcase_26 AC 74 ms
76,228 KB
testcase_27 AC 68 ms
76,032 KB
testcase_28 AC 62 ms
76,332 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 #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

t, b = map(int, readline().split())
for _ in range(t):
    n = int(readline())
    s = ''
    while n != 0:
        r = n % (-b)
        s += chr(48 + r)
        n = (n - r) // b
    print(''.join(reversed(s)))
0