結果

問題 No.782 マイナス進数
ユーザー kohei2019kohei2019
提出日時 2022-04-09 12:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 77,052 KB
最終ジャッジ日時 2024-05-06 23:10:21
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,760 KB
testcase_01 AC 37 ms
52,748 KB
testcase_02 AC 118 ms
76,772 KB
testcase_03 AC 108 ms
76,876 KB
testcase_04 AC 112 ms
76,928 KB
testcase_05 AC 118 ms
76,900 KB
testcase_06 AC 110 ms
76,988 KB
testcase_07 AC 112 ms
76,920 KB
testcase_08 AC 110 ms
76,772 KB
testcase_09 AC 119 ms
77,052 KB
testcase_10 AC 116 ms
76,892 KB
testcase_11 AC 116 ms
76,880 KB
testcase_12 AC 114 ms
76,988 KB
testcase_13 AC 124 ms
76,880 KB
testcase_14 AC 112 ms
76,936 KB
testcase_15 AC 113 ms
76,780 KB
testcase_16 AC 113 ms
76,552 KB
testcase_17 AC 122 ms
76,812 KB
testcase_18 AC 110 ms
76,824 KB
testcase_19 AC 113 ms
76,820 KB
testcase_20 AC 115 ms
76,884 KB
testcase_21 AC 119 ms
76,988 KB
testcase_22 AC 112 ms
76,876 KB
testcase_23 AC 111 ms
76,692 KB
testcase_24 AC 131 ms
76,972 KB
testcase_25 AC 108 ms
76,820 KB
testcase_26 AC 111 ms
76,504 KB
testcase_27 AC 111 ms
76,916 KB
testcase_28 AC 113 ms
76,576 KB
testcase_29 AC 40 ms
58,600 KB
testcase_30 AC 40 ms
59,032 KB
testcase_31 AC 51 ms
61,144 KB
testcase_32 AC 52 ms
65,708 KB
testcase_33 AC 39 ms
58,968 KB
testcase_34 AC 45 ms
60,656 KB
testcase_35 AC 43 ms
60,660 KB
testcase_36 AC 40 ms
58,792 KB
testcase_37 AC 43 ms
62,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T,B = map(int,input().split())
A = abs(B)
for i in range(T):
    N = int(input())
    if N == 0:
        print(0)
        continue
    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