結果

問題 No.782 マイナス進数
ユーザー GrenacheGrenache
提出日時 2019-05-01 22:58:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 4,190 ms
コンパイル使用メモリ 75,352 KB
実行使用メモリ 59,208 KB
最終ジャッジ日時 2024-06-10 03:45:00
合計ジャッジ時間 14,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,024 KB
testcase_01 AC 129 ms
54,376 KB
testcase_02 AC 295 ms
58,884 KB
testcase_03 AC 295 ms
58,832 KB
testcase_04 AC 295 ms
58,632 KB
testcase_05 AC 297 ms
58,788 KB
testcase_06 AC 296 ms
58,812 KB
testcase_07 AC 315 ms
58,836 KB
testcase_08 AC 310 ms
59,044 KB
testcase_09 AC 291 ms
58,888 KB
testcase_10 AC 290 ms
58,708 KB
testcase_11 AC 313 ms
58,660 KB
testcase_12 AC 313 ms
58,564 KB
testcase_13 AC 352 ms
59,208 KB
testcase_14 AC 310 ms
57,988 KB
testcase_15 AC 314 ms
58,940 KB
testcase_16 AC 314 ms
58,784 KB
testcase_17 AC 343 ms
59,048 KB
testcase_18 AC 328 ms
58,428 KB
testcase_19 AC 335 ms
58,864 KB
testcase_20 AC 328 ms
58,260 KB
testcase_21 AC 335 ms
58,724 KB
testcase_22 AC 322 ms
58,756 KB
testcase_23 AC 328 ms
58,776 KB
testcase_24 AC 344 ms
58,836 KB
testcase_25 AC 319 ms
58,884 KB
testcase_26 AC 335 ms
59,084 KB
testcase_27 AC 323 ms
58,508 KB
testcase_28 AC 322 ms
58,780 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.Scanner;

public class Main_yukicoder782 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int t = sc.nextInt();
		int b = sc.nextInt();
		
		for (int tcase = 0; tcase < t; tcase++) {
			int n = sc.nextInt();
			
			StringBuilder ans = new StringBuilder();
			while (n != 0) {
				int mod = n % b;
				if (mod < 0) {
					mod -= b;
				}
				ans.append(mod);
				n = (n - mod) / b;
			}
			
			pr.println(ans.reverse().toString());
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0