結果

問題 No.782 マイナス進数
ユーザー GrenacheGrenache
提出日時 2019-05-01 23:00:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 4,041 ms
コンパイル使用メモリ 76,192 KB
実行使用メモリ 59,112 KB
最終ジャッジ日時 2024-06-10 03:45:31
合計ジャッジ時間 13,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,964 KB
testcase_01 AC 117 ms
54,196 KB
testcase_02 AC 268 ms
58,576 KB
testcase_03 AC 268 ms
58,808 KB
testcase_04 AC 271 ms
57,796 KB
testcase_05 AC 281 ms
58,684 KB
testcase_06 AC 276 ms
58,784 KB
testcase_07 AC 277 ms
58,744 KB
testcase_08 AC 274 ms
58,428 KB
testcase_09 AC 258 ms
58,284 KB
testcase_10 AC 274 ms
58,732 KB
testcase_11 AC 301 ms
58,544 KB
testcase_12 AC 297 ms
58,640 KB
testcase_13 AC 329 ms
59,112 KB
testcase_14 AC 280 ms
58,212 KB
testcase_15 AC 281 ms
58,816 KB
testcase_16 AC 295 ms
58,532 KB
testcase_17 AC 296 ms
58,572 KB
testcase_18 AC 294 ms
58,360 KB
testcase_19 AC 305 ms
58,608 KB
testcase_20 AC 313 ms
58,336 KB
testcase_21 AC 304 ms
58,580 KB
testcase_22 AC 301 ms
58,664 KB
testcase_23 AC 295 ms
58,608 KB
testcase_24 AC 315 ms
59,096 KB
testcase_25 AC 293 ms
58,460 KB
testcase_26 AC 305 ms
58,608 KB
testcase_27 AC 302 ms
58,652 KB
testcase_28 AC 291 ms
58,744 KB
testcase_29 AC 105 ms
52,828 KB
testcase_30 AC 109 ms
52,808 KB
testcase_31 AC 109 ms
52,744 KB
testcase_32 AC 123 ms
53,024 KB
testcase_33 AC 122 ms
53,920 KB
testcase_34 AC 125 ms
53,864 KB
testcase_35 AC 124 ms
54,060 KB
testcase_36 AC 119 ms
53,956 KB
testcase_37 AC 126 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

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;
			}

			if (ans.length() == 0) {
				pr.println(0);
			} else {
				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