結果

問題 No.782 マイナス進数
ユーザー tentententen
提出日時 2022-08-12 09:50:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,546 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 78,496 KB
実行使用メモリ 57,300 KB
最終ジャッジ日時 2024-09-22 13:40:45
合計ジャッジ時間 9,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,320 KB
testcase_01 AC 54 ms
50,288 KB
testcase_02 AC 144 ms
52,268 KB
testcase_03 AC 148 ms
54,576 KB
testcase_04 AC 153 ms
54,644 KB
testcase_05 AC 148 ms
52,604 KB
testcase_06 AC 143 ms
52,336 KB
testcase_07 AC 155 ms
54,452 KB
testcase_08 AC 152 ms
54,664 KB
testcase_09 AC 145 ms
52,336 KB
testcase_10 AC 148 ms
52,600 KB
testcase_11 AC 161 ms
54,824 KB
testcase_12 AC 155 ms
54,484 KB
testcase_13 AC 184 ms
56,636 KB
testcase_14 AC 153 ms
54,432 KB
testcase_15 AC 159 ms
54,636 KB
testcase_16 AC 159 ms
54,680 KB
testcase_17 AC 160 ms
54,664 KB
testcase_18 AC 149 ms
54,796 KB
testcase_19 AC 168 ms
54,592 KB
testcase_20 AC 148 ms
54,644 KB
testcase_21 AC 169 ms
54,652 KB
testcase_22 AC 163 ms
54,900 KB
testcase_23 AC 158 ms
54,756 KB
testcase_24 AC 184 ms
57,300 KB
testcase_25 AC 147 ms
54,544 KB
testcase_26 AC 164 ms
54,528 KB
testcase_27 AC 158 ms
54,464 KB
testcase_28 AC 159 ms
54,864 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 #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        int b = -sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            int x = sc.nextInt();
            StringBuilder current = new StringBuilder();
            boolean isPlus = true;
            while (x > 0) {
                int mod = x % b;
                if (isPlus) {
                    current.append(mod);
                } else {
                    current.append((b - mod) % b);
                    x += (b - mod) % b;
                }
                isPlus ^= true;
                x /= b;
            }
            sb.append(current.reverse()).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0