結果

問題 No.782 マイナス進数
ユーザー tentententen
提出日時 2023-11-15 20:50:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 2,312 bytes
コンパイル時間 2,708 ms
コンパイル使用メモリ 92,056 KB
実行使用メモリ 45,988 KB
最終ジャッジ日時 2024-09-26 04:50:25
合計ジャッジ時間 9,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,828 KB
testcase_01 AC 49 ms
37,188 KB
testcase_02 AC 135 ms
40,660 KB
testcase_03 AC 141 ms
41,364 KB
testcase_04 AC 137 ms
40,952 KB
testcase_05 AC 134 ms
41,048 KB
testcase_06 AC 134 ms
40,832 KB
testcase_07 AC 145 ms
41,060 KB
testcase_08 AC 145 ms
41,032 KB
testcase_09 AC 142 ms
40,672 KB
testcase_10 AC 137 ms
40,648 KB
testcase_11 AC 149 ms
41,436 KB
testcase_12 AC 155 ms
41,508 KB
testcase_13 AC 175 ms
45,988 KB
testcase_14 AC 148 ms
41,332 KB
testcase_15 AC 152 ms
41,584 KB
testcase_16 AC 148 ms
41,112 KB
testcase_17 AC 163 ms
44,688 KB
testcase_18 AC 147 ms
41,460 KB
testcase_19 AC 164 ms
42,232 KB
testcase_20 AC 144 ms
41,508 KB
testcase_21 AC 159 ms
42,064 KB
testcase_22 AC 145 ms
41,332 KB
testcase_23 AC 146 ms
41,588 KB
testcase_24 AC 173 ms
45,980 KB
testcase_25 AC 149 ms
41,376 KB
testcase_26 AC 154 ms
41,928 KB
testcase_27 AC 146 ms
41,728 KB
testcase_28 AC 149 ms
41,576 KB
testcase_29 AC 48 ms
37,028 KB
testcase_30 AC 48 ms
36,852 KB
testcase_31 AC 49 ms
36,736 KB
testcase_32 AC 53 ms
37,192 KB
testcase_33 AC 50 ms
36,936 KB
testcase_34 AC 48 ms
37,192 KB
testcase_35 AC 49 ms
36,736 KB
testcase_36 AC 48 ms
36,676 KB
testcase_37 AC 47 ms
37,004 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 n = sc.nextInt();
        int b = -sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            int x = sc.nextInt();
            if (x == 0) {
                sb.append("0\n");
                continue;
            }
            boolean isMinus = false;
            StringBuilder tmp = new StringBuilder();
            while (x > 0) {
                int mod = x % b;
                if (isMinus) {
                    if (mod == 0) {
                        tmp.append(mod);
                    } else {
                        tmp.append(b - mod);
                        x += b;
                    }
                } else {
                    tmp.append(mod);
                }
                x /= b;
                isMinus ^= 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