結果

問題 No.782 マイナス進数
ユーザー もりをもりを
提出日時 2019-01-11 21:34:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-07 11:59:43
合計ジャッジ時間 6,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 116 ms
10,624 KB
testcase_03 AC 123 ms
10,624 KB
testcase_04 AC 134 ms
10,752 KB
testcase_05 AC 117 ms
10,624 KB
testcase_06 AC 111 ms
10,624 KB
testcase_07 AC 164 ms
10,752 KB
testcase_08 AC 121 ms
10,624 KB
testcase_09 AC 116 ms
10,752 KB
testcase_10 AC 110 ms
10,752 KB
testcase_11 AC 157 ms
10,624 KB
testcase_12 AC 146 ms
10,496 KB
testcase_13 AC 258 ms
10,752 KB
testcase_14 AC 167 ms
10,752 KB
testcase_15 AC 178 ms
10,624 KB
testcase_16 AC 156 ms
10,624 KB
testcase_17 AC 216 ms
10,880 KB
testcase_18 AC 156 ms
10,752 KB
testcase_19 AC 203 ms
10,752 KB
testcase_20 AC 152 ms
10,624 KB
testcase_21 AC 192 ms
10,496 KB
testcase_22 AC 159 ms
10,624 KB
testcase_23 AC 139 ms
10,752 KB
testcase_24 AC 265 ms
10,624 KB
testcase_25 AC 152 ms
10,752 KB
testcase_26 AC 175 ms
10,752 KB
testcase_27 AC 164 ms
10,752 KB
testcase_28 AC 152 ms
10,752 KB
testcase_29 AC 27 ms
10,624 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 27 ms
10,624 KB
testcase_33 AC 26 ms
10,496 KB
testcase_34 AC 26 ms
10,496 KB
testcase_35 AC 26 ms
10,624 KB
testcase_36 AC 26 ms
10,496 KB
testcase_37 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t,b = map(int,input().split())
for _ in range(t):
    n = int(input())
    if n == 0:
        print(0)
        continue
    ans = []
    # cnt = 0####
    while n != 0:
        t = (n % b)
        n //= b
        if t < 0:
            n += 1
            t -= b
        # print(n,t,ans)
        # cnt += 1######
        # if cnt == 20:####
        #     break#####
        ans.append(str(t))
    print(''.join(ans[::-1]))
0