結果

問題 No.782 マイナス進数
ユーザー Mcpu3Mcpu3
提出日時 2020-04-05 11:12:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,357 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 75,420 KB
実行使用メモリ 69,692 KB
最終ジャッジ日時 2024-07-03 08:05:56
合計ジャッジ時間 26,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,084 KB
testcase_01 AC 129 ms
54,120 KB
testcase_02 AC 578 ms
63,024 KB
testcase_03 AC 617 ms
60,276 KB
testcase_04 AC 704 ms
60,324 KB
testcase_05 AC 624 ms
60,304 KB
testcase_06 AC 586 ms
60,092 KB
testcase_07 AC 807 ms
63,388 KB
testcase_08 AC 604 ms
60,132 KB
testcase_09 AC 548 ms
60,332 KB
testcase_10 AC 574 ms
59,776 KB
testcase_11 AC 793 ms
63,920 KB
testcase_12 AC 762 ms
60,180 KB
testcase_13 AC 1,357 ms
67,188 KB
testcase_14 AC 758 ms
60,428 KB
testcase_15 AC 790 ms
64,492 KB
testcase_16 AC 760 ms
62,540 KB
testcase_17 AC 1,087 ms
65,876 KB
testcase_18 AC 746 ms
60,168 KB
testcase_19 AC 933 ms
65,308 KB
testcase_20 AC 789 ms
60,020 KB
testcase_21 AC 1,019 ms
65,800 KB
testcase_22 AC 790 ms
60,272 KB
testcase_23 AC 736 ms
60,240 KB
testcase_24 AC 1,337 ms
69,692 KB
testcase_25 AC 782 ms
60,512 KB
testcase_26 AC 894 ms
65,224 KB
testcase_27 AC 829 ms
62,368 KB
testcase_28 AC 744 ms
60,436 KB
testcase_29 AC 143 ms
54,096 KB
testcase_30 AC 123 ms
54,084 KB
testcase_31 AC 171 ms
54,300 KB
testcase_32 AC 180 ms
54,580 KB
testcase_33 AC 137 ms
54,428 KB
testcase_34 AC 155 ms
54,268 KB
testcase_35 AC 143 ms
54,244 KB
testcase_36 AC 144 ms
54,244 KB
testcase_37 AC 151 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int T = scanner.nextInt(), B = scanner.nextInt();
		for (int i = 0; i < T; i++) {
			int N = scanner.nextInt();
			Deque<Integer> a = new ArrayDeque<Integer>();
			do {
				if (N % B < 0) {
					a.addFirst(N % B - B);
					N += B;
				}
				else a.addFirst(N % B);
				N /= B;
			} while (N != 0);
			for (int j : a) System.out.print(j);
			System.out.println();
		}
	}
}
0