結果

問題 No.782 マイナス進数
ユーザー htensaihtensai
提出日時 2019-12-25 13:54:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 58,296 KB
最終ジャッジ日時 2024-09-25 00:07:27
合計ジャッジ時間 13,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,120 KB
testcase_01 AC 124 ms
41,192 KB
testcase_02 AC 275 ms
47,400 KB
testcase_03 AC 273 ms
47,240 KB
testcase_04 AC 276 ms
47,588 KB
testcase_05 AC 282 ms
47,352 KB
testcase_06 AC 275 ms
58,296 KB
testcase_07 AC 286 ms
47,040 KB
testcase_08 AC 276 ms
46,272 KB
testcase_09 AC 272 ms
58,272 KB
testcase_10 AC 279 ms
47,416 KB
testcase_11 AC 301 ms
47,784 KB
testcase_12 AC 290 ms
46,356 KB
testcase_13 AC 316 ms
48,208 KB
testcase_14 AC 312 ms
47,220 KB
testcase_15 AC 300 ms
47,620 KB
testcase_16 AC 298 ms
47,564 KB
testcase_17 AC 301 ms
47,884 KB
testcase_18 AC 293 ms
47,372 KB
testcase_19 AC 311 ms
47,836 KB
testcase_20 AC 302 ms
47,240 KB
testcase_21 AC 312 ms
47,288 KB
testcase_22 AC 304 ms
47,084 KB
testcase_23 AC 293 ms
47,044 KB
testcase_24 AC 312 ms
48,332 KB
testcase_25 AC 301 ms
47,068 KB
testcase_26 AC 298 ms
47,884 KB
testcase_27 AC 311 ms
47,524 KB
testcase_28 AC 301 ms
47,268 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.util.*;

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