結果

問題 No.782 マイナス進数
ユーザー htensaihtensai
提出日時 2019-12-25 13:56:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 1,127 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 59,176 KB
最終ジャッジ日時 2024-09-25 00:14:56
合計ジャッジ時間 13,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,136 KB
testcase_01 AC 132 ms
54,004 KB
testcase_02 AC 295 ms
58,520 KB
testcase_03 AC 290 ms
58,268 KB
testcase_04 AC 291 ms
58,528 KB
testcase_05 AC 292 ms
58,680 KB
testcase_06 AC 284 ms
58,436 KB
testcase_07 AC 296 ms
59,152 KB
testcase_08 AC 287 ms
58,596 KB
testcase_09 AC 285 ms
58,532 KB
testcase_10 AC 288 ms
58,640 KB
testcase_11 AC 319 ms
58,536 KB
testcase_12 AC 314 ms
58,492 KB
testcase_13 AC 336 ms
59,176 KB
testcase_14 AC 308 ms
58,344 KB
testcase_15 AC 316 ms
58,860 KB
testcase_16 AC 310 ms
58,344 KB
testcase_17 AC 316 ms
58,652 KB
testcase_18 AC 310 ms
58,536 KB
testcase_19 AC 313 ms
58,676 KB
testcase_20 AC 324 ms
58,608 KB
testcase_21 AC 323 ms
58,628 KB
testcase_22 AC 310 ms
58,652 KB
testcase_23 AC 308 ms
58,636 KB
testcase_24 AC 337 ms
58,872 KB
testcase_25 AC 308 ms
58,532 KB
testcase_26 AC 321 ms
58,624 KB
testcase_27 AC 325 ms
58,520 KB
testcase_28 AC 310 ms
58,360 KB
testcase_29 AC 138 ms
54,080 KB
testcase_30 AC 138 ms
54,052 KB
testcase_31 AC 147 ms
54,132 KB
testcase_32 AC 147 ms
54,524 KB
testcase_33 AC 138 ms
54,096 KB
testcase_34 AC 139 ms
53,908 KB
testcase_35 AC 141 ms
54,060 KB
testcase_36 AC 143 ms
53,992 KB
testcase_37 AC 141 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

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();
            if (x == 0) {
                ans.append(0).append("\n");
                continue;
            }
           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