結果

問題 No.782 マイナス進数
ユーザー GrenacheGrenache
提出日時 2019-05-01 22:58:23
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 75,360 KB
実行使用メモリ 59,272 KB
最終ジャッジ日時 2024-12-31 12:43:05
合計ジャッジ時間 15,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,376 KB
testcase_01 AC 136 ms
54,224 KB
testcase_02 AC 300 ms
58,584 KB
testcase_03 AC 308 ms
58,916 KB
testcase_04 AC 314 ms
58,572 KB
testcase_05 AC 308 ms
58,584 KB
testcase_06 AC 308 ms
58,700 KB
testcase_07 AC 319 ms
58,956 KB
testcase_08 AC 315 ms
58,680 KB
testcase_09 AC 310 ms
58,568 KB
testcase_10 AC 310 ms
58,588 KB
testcase_11 AC 330 ms
58,400 KB
testcase_12 AC 334 ms
58,700 KB
testcase_13 AC 348 ms
59,108 KB
testcase_14 AC 331 ms
58,668 KB
testcase_15 AC 336 ms
58,616 KB
testcase_16 AC 328 ms
58,412 KB
testcase_17 AC 342 ms
58,896 KB
testcase_18 AC 333 ms
58,564 KB
testcase_19 AC 332 ms
59,020 KB
testcase_20 AC 339 ms
58,728 KB
testcase_21 AC 340 ms
58,888 KB
testcase_22 AC 328 ms
58,708 KB
testcase_23 AC 346 ms
58,656 KB
testcase_24 AC 376 ms
59,272 KB
testcase_25 AC 354 ms
58,648 KB
testcase_26 AC 370 ms
58,864 KB
testcase_27 AC 348 ms
58,776 KB
testcase_28 AC 340 ms
58,788 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