結果

問題 No.782 マイナス進数
ユーザー rlangevinrlangevin
提出日時 2023-02-06 12:48:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-04 17:44:11
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 118 ms
76,672 KB
testcase_03 AC 106 ms
76,800 KB
testcase_04 AC 117 ms
76,148 KB
testcase_05 AC 108 ms
75,904 KB
testcase_06 AC 114 ms
76,288 KB
testcase_07 AC 122 ms
76,336 KB
testcase_08 AC 107 ms
76,288 KB
testcase_09 AC 111 ms
76,296 KB
testcase_10 AC 106 ms
76,300 KB
testcase_11 AC 112 ms
76,032 KB
testcase_12 AC 122 ms
76,672 KB
testcase_13 AC 131 ms
76,244 KB
testcase_14 AC 119 ms
76,552 KB
testcase_15 AC 110 ms
76,456 KB
testcase_16 AC 119 ms
76,416 KB
testcase_17 AC 122 ms
76,644 KB
testcase_18 AC 120 ms
76,768 KB
testcase_19 AC 116 ms
75,904 KB
testcase_20 AC 110 ms
76,156 KB
testcase_21 AC 120 ms
76,144 KB
testcase_22 AC 111 ms
75,904 KB
testcase_23 AC 108 ms
76,160 KB
testcase_24 AC 132 ms
76,160 KB
testcase_25 AC 111 ms
76,588 KB
testcase_26 AC 112 ms
75,904 KB
testcase_27 AC 119 ms
76,604 KB
testcase_28 AC 108 ms
76,176 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 #

T, B = map(int, input().split())
B = -B
for _ in range(T):
    N = int(input())
    cnt = 0
    ans = []
    while N:
        v = N % B
        # print(cnt, v, N)
        if cnt % 2:
            if v:
                ans.append(B - v)
                N += B
            else:
                ans.append(0)
        else:
            ans.append(v)
        N //= B
        cnt += 1
        
    ans = ans[::-1]
    print(*ans, sep="")
0