結果

問題 No.782 マイナス進数
ユーザー kohei2019kohei2019
提出日時 2022-04-09 12:19:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 606 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,296 KB
最終ジャッジ日時 2024-05-06 23:08:53
合計ジャッジ時間 5,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,220 KB
testcase_01 AC 35 ms
53,992 KB
testcase_02 AC 115 ms
77,136 KB
testcase_03 AC 111 ms
76,576 KB
testcase_04 AC 117 ms
76,996 KB
testcase_05 AC 110 ms
76,624 KB
testcase_06 AC 106 ms
76,784 KB
testcase_07 AC 112 ms
76,620 KB
testcase_08 AC 109 ms
76,820 KB
testcase_09 AC 115 ms
76,916 KB
testcase_10 AC 120 ms
77,252 KB
testcase_11 AC 116 ms
76,840 KB
testcase_12 AC 110 ms
76,692 KB
testcase_13 AC 123 ms
76,616 KB
testcase_14 AC 109 ms
76,848 KB
testcase_15 AC 112 ms
77,240 KB
testcase_16 AC 111 ms
76,784 KB
testcase_17 AC 121 ms
77,296 KB
testcase_18 AC 111 ms
76,964 KB
testcase_19 AC 112 ms
76,612 KB
testcase_20 AC 112 ms
76,600 KB
testcase_21 AC 119 ms
76,856 KB
testcase_22 AC 114 ms
76,500 KB
testcase_23 AC 111 ms
76,764 KB
testcase_24 AC 126 ms
76,824 KB
testcase_25 AC 111 ms
76,992 KB
testcase_26 AC 115 ms
76,892 KB
testcase_27 AC 113 ms
76,548 KB
testcase_28 AC 113 ms
76,508 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T,B = map(int,input().split())
A = abs(B)
for i in range(T):
    N = int(input())
    ls = []
    while N > 0:
        ls.append(N%A)
        N //= A
    ls2 = [0]*40
    for j in range(len(ls)):
        ls2[j] = ls[j]
    for j in range(39):
        if j % 2 == 0:
            ls2[j+1] += ls2[j]//A
            ls2[j] = ls2[j]%A
        else:
            ls2[j+1] += ls2[j]//A
            ls2[j] = ls2[j]%A
            if not ls2[j]==0:
                ls2[j] = A-ls2[j]
                ls2[j+1] += 1
    while ls2[-1] == 0:
        ls2.pop()
    ls2.reverse()
    print(*ls2,sep='')
            
        
0