結果

問題 No.782 マイナス進数
ユーザー tentententen
提出日時 2023-07-07 16:09:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 2,370 bytes
コンパイル時間 4,549 ms
コンパイル使用メモリ 90,928 KB
実行使用メモリ 46,152 KB
最終ジャッジ日時 2024-07-21 11:28:20
合計ジャッジ時間 9,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,904 KB
testcase_01 AC 52 ms
37,048 KB
testcase_02 AC 147 ms
40,508 KB
testcase_03 AC 152 ms
41,088 KB
testcase_04 AC 152 ms
41,120 KB
testcase_05 AC 151 ms
40,864 KB
testcase_06 AC 146 ms
40,656 KB
testcase_07 AC 154 ms
41,156 KB
testcase_08 AC 148 ms
40,832 KB
testcase_09 AC 148 ms
40,716 KB
testcase_10 AC 146 ms
40,728 KB
testcase_11 AC 165 ms
41,584 KB
testcase_12 AC 160 ms
41,228 KB
testcase_13 AC 182 ms
46,144 KB
testcase_14 AC 157 ms
41,196 KB
testcase_15 AC 157 ms
40,932 KB
testcase_16 AC 157 ms
41,240 KB
testcase_17 AC 174 ms
42,104 KB
testcase_18 AC 148 ms
41,128 KB
testcase_19 AC 171 ms
42,172 KB
testcase_20 AC 160 ms
41,260 KB
testcase_21 AC 177 ms
42,240 KB
testcase_22 AC 163 ms
41,132 KB
testcase_23 AC 158 ms
41,196 KB
testcase_24 AC 183 ms
46,152 KB
testcase_25 AC 160 ms
40,916 KB
testcase_26 AC 163 ms
41,944 KB
testcase_27 AC 160 ms
41,336 KB
testcase_28 AC 160 ms
41,288 KB
testcase_29 AC 53 ms
37,044 KB
testcase_30 AC 53 ms
37,016 KB
testcase_31 AC 53 ms
36,920 KB
testcase_32 AC 54 ms
37,172 KB
testcase_33 AC 52 ms
37,108 KB
testcase_34 AC 53 ms
36,784 KB
testcase_35 AC 54 ms
37,044 KB
testcase_36 AC 54 ms
37,120 KB
testcase_37 AC 54 ms
36,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 n = sc.nextInt();
            if (n == 0) {
                sb.append("0\n");
                continue;
            }
            StringBuilder tmp = new StringBuilder();
            boolean isPlus = true;
            while (n > 0) {
                int mod = n % b;
                if (isPlus) {
                    tmp.append(mod);
                    n /= b;
                } else {
                    if (mod > 0) {
                        tmp.append(b - mod);
                        n /= b;
                        n++;
                    } else {
                        tmp.append(0);
                        n /= b;
                    }
                }
                isPlus ^= true;
            }
            sb.append(tmp.reverse()).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0