結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 105 ms
76,160 KB
testcase_03 AC 65 ms
76,032 KB
testcase_04 AC 69 ms
75,648 KB
testcase_05 AC 65 ms
75,776 KB
testcase_06 AC 62 ms
76,160 KB
testcase_07 AC 67 ms
76,436 KB
testcase_08 AC 65 ms
75,904 KB
testcase_09 AC 65 ms
76,048 KB
testcase_10 AC 61 ms
75,776 KB
testcase_11 AC 68 ms
76,160 KB
testcase_12 AC 67 ms
76,032 KB
testcase_13 AC 73 ms
75,776 KB
testcase_14 AC 67 ms
76,160 KB
testcase_15 AC 65 ms
75,776 KB
testcase_16 AC 67 ms
75,904 KB
testcase_17 AC 73 ms
76,160 KB
testcase_18 AC 68 ms
76,032 KB
testcase_19 AC 66 ms
75,648 KB
testcase_20 AC 63 ms
76,160 KB
testcase_21 AC 67 ms
76,120 KB
testcase_22 AC 63 ms
75,648 KB
testcase_23 AC 62 ms
75,648 KB
testcase_24 AC 72 ms
75,776 KB
testcase_25 AC 66 ms
76,436 KB
testcase_26 AC 65 ms
75,648 KB
testcase_27 AC 72 ms
75,776 KB
testcase_28 AC 67 ms
76,160 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