結果

問題 No.782 マイナス進数
ユーザー stngstng
提出日時 2022-06-12 18:47:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 76,900 KB
最終ジャッジ日時 2024-09-23 05:11:26
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,416 KB
testcase_01 AC 38 ms
52,624 KB
testcase_02 AC 87 ms
76,540 KB
testcase_03 AC 90 ms
76,352 KB
testcase_04 AC 89 ms
76,564 KB
testcase_05 AC 89 ms
76,532 KB
testcase_06 AC 88 ms
76,900 KB
testcase_07 AC 90 ms
76,500 KB
testcase_08 AC 89 ms
76,360 KB
testcase_09 AC 86 ms
76,508 KB
testcase_10 AC 86 ms
76,472 KB
testcase_11 AC 92 ms
76,672 KB
testcase_12 AC 90 ms
76,768 KB
testcase_13 AC 102 ms
76,336 KB
testcase_14 AC 89 ms
76,768 KB
testcase_15 AC 93 ms
76,404 KB
testcase_16 AC 89 ms
76,348 KB
testcase_17 AC 94 ms
76,388 KB
testcase_18 AC 90 ms
76,740 KB
testcase_19 AC 93 ms
76,232 KB
testcase_20 AC 92 ms
76,624 KB
testcase_21 AC 94 ms
76,380 KB
testcase_22 AC 92 ms
76,296 KB
testcase_23 AC 89 ms
76,360 KB
testcase_24 AC 100 ms
76,388 KB
testcase_25 AC 92 ms
76,308 KB
testcase_26 AC 92 ms
76,628 KB
testcase_27 AC 92 ms
76,436 KB
testcase_28 AC 91 ms
76,376 KB
testcase_29 AC 39 ms
52,592 KB
testcase_30 AC 39 ms
52,732 KB
testcase_31 AC 38 ms
53,064 KB
testcase_32 AC 43 ms
59,852 KB
testcase_33 AC 38 ms
52,956 KB
testcase_34 AC 38 ms
53,132 KB
testcase_35 AC 38 ms
52,528 KB
testcase_36 AC 38 ms
52,136 KB
testcase_37 AC 38 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Base_10_to_n(X, n):
    if X == 0:
        return "0"
    ans = ""
    cnt = 0
    while X > 0:
        tmp = X % n
        if cnt % 2 == 1 and tmp != 0:
            tmp = n-tmp
            X += tmp
        X //= n
        cnt += 1
        ans = str(tmp) + ans
    return ans

t,b = map(int,input().split())
n = [int(input()) for i in range(t)]
for i in range(t):
    print(Base_10_to_n(n[i],abs(b)))
0