結果

問題 No.782 マイナス進数
ユーザー rlangevinrlangevin
提出日時 2023-02-07 00:56:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-05 01:47:53
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,616 KB
testcase_02 AC 127 ms
76,560 KB
testcase_03 AC 107 ms
76,672 KB
testcase_04 AC 113 ms
75,968 KB
testcase_05 AC 109 ms
75,808 KB
testcase_06 AC 116 ms
75,796 KB
testcase_07 AC 124 ms
76,468 KB
testcase_08 AC 108 ms
75,948 KB
testcase_09 AC 109 ms
76,280 KB
testcase_10 AC 108 ms
76,216 KB
testcase_11 AC 113 ms
75,884 KB
testcase_12 AC 121 ms
76,452 KB
testcase_13 AC 133 ms
76,032 KB
testcase_14 AC 127 ms
76,284 KB
testcase_15 AC 115 ms
75,944 KB
testcase_16 AC 123 ms
76,500 KB
testcase_17 AC 125 ms
76,424 KB
testcase_18 AC 127 ms
76,316 KB
testcase_19 AC 117 ms
76,416 KB
testcase_20 AC 113 ms
76,084 KB
testcase_21 AC 123 ms
75,656 KB
testcase_22 AC 112 ms
75,664 KB
testcase_23 AC 111 ms
75,964 KB
testcase_24 AC 136 ms
76,240 KB
testcase_25 AC 114 ms
76,080 KB
testcase_26 AC 116 ms
75,920 KB
testcase_27 AC 120 ms
76,000 KB
testcase_28 AC 109 ms
75,872 KB
testcase_29 AC 40 ms
52,480 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 43 ms
52,728 KB
testcase_32 AC 57 ms
62,336 KB
testcase_33 AC 41 ms
52,480 KB
testcase_34 AC 40 ms
52,292 KB
testcase_35 AC 42 ms
52,608 KB
testcase_36 AC 43 ms
52,480 KB
testcase_37 AC 43 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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