結果

問題 No.782 マイナス進数
ユーザー tentententen
提出日時 2023-04-24 15:12:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,090 bytes
コンパイル時間 4,050 ms
コンパイル使用メモリ 84,796 KB
実行使用メモリ 45,628 KB
最終ジャッジ日時 2024-11-08 16:58:51
合計ジャッジ時間 9,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,808 KB
testcase_01 AC 55 ms
36,808 KB
testcase_02 AC 148 ms
40,692 KB
testcase_03 AC 152 ms
41,148 KB
testcase_04 AC 152 ms
41,128 KB
testcase_05 AC 153 ms
40,760 KB
testcase_06 AC 149 ms
40,704 KB
testcase_07 AC 160 ms
40,780 KB
testcase_08 AC 152 ms
41,216 KB
testcase_09 AC 145 ms
40,692 KB
testcase_10 AC 145 ms
40,780 KB
testcase_11 AC 167 ms
41,100 KB
testcase_12 AC 161 ms
41,160 KB
testcase_13 AC 189 ms
45,552 KB
testcase_14 AC 161 ms
41,156 KB
testcase_15 AC 148 ms
41,388 KB
testcase_16 AC 157 ms
41,420 KB
testcase_17 AC 174 ms
42,224 KB
testcase_18 AC 163 ms
41,160 KB
testcase_19 AC 177 ms
41,980 KB
testcase_20 AC 163 ms
41,340 KB
testcase_21 AC 175 ms
41,904 KB
testcase_22 AC 159 ms
41,464 KB
testcase_23 AC 157 ms
41,156 KB
testcase_24 AC 187 ms
45,628 KB
testcase_25 AC 162 ms
41,244 KB
testcase_26 AC 170 ms
41,712 KB
testcase_27 AC 161 ms
41,292 KB
testcase_28 AC 163 ms
41,116 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.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int base = -sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            int x = sc.nextInt();
            boolean isEven = true;
            StringBuilder tmp = new StringBuilder();
            while (x > 0) {
                if (isEven) {
                    tmp.append(x % base);
                } else {
                    tmp.append((base - x % base) % base);
                    x += (base - x % base) % base;
                }
                x /= base;
                isEven ^= 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