結果

問題 No.782 マイナス進数
ユーザー tentententen
提出日時 2020-09-01 09:08:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 48,568 KB
最終ジャッジ日時 2024-11-17 19:00:24
合計ジャッジ時間 12,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,512 KB
testcase_01 AC 102 ms
41,480 KB
testcase_02 AC 224 ms
47,200 KB
testcase_03 AC 236 ms
47,716 KB
testcase_04 AC 230 ms
47,204 KB
testcase_05 AC 232 ms
47,752 KB
testcase_06 AC 231 ms
47,132 KB
testcase_07 AC 288 ms
47,504 KB
testcase_08 AC 231 ms
46,748 KB
testcase_09 AC 226 ms
47,280 KB
testcase_10 AC 238 ms
47,160 KB
testcase_11 AC 252 ms
47,844 KB
testcase_12 AC 246 ms
47,232 KB
testcase_13 AC 255 ms
48,568 KB
testcase_14 AC 247 ms
47,168 KB
testcase_15 AC 250 ms
47,756 KB
testcase_16 AC 252 ms
48,076 KB
testcase_17 AC 264 ms
47,752 KB
testcase_18 AC 252 ms
46,596 KB
testcase_19 AC 256 ms
46,544 KB
testcase_20 AC 248 ms
47,424 KB
testcase_21 AC 262 ms
48,168 KB
testcase_22 AC 252 ms
47,208 KB
testcase_23 AC 251 ms
47,380 KB
testcase_24 AC 276 ms
48,412 KB
testcase_25 AC 258 ms
47,532 KB
testcase_26 AC 257 ms
47,780 KB
testcase_27 AC 241 ms
47,948 KB
testcase_28 AC 248 ms
47,344 KB
testcase_29 AC 109 ms
40,312 KB
testcase_30 AC 107 ms
41,356 KB
testcase_31 AC 100 ms
41,252 KB
testcase_32 AC 113 ms
41,712 KB
testcase_33 AC 105 ms
41,064 KB
testcase_34 AC 109 ms
41,080 KB
testcase_35 AC 99 ms
41,444 KB
testcase_36 AC 108 ms
41,232 KB
testcase_37 AC 108 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static long[] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int t = sc.nextInt();
    	int b = -sc.nextInt();
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < t; i++) {
    	    StringBuilder tmp = new StringBuilder();
    	    int n = sc.nextInt();
    	    for (int j = 0; n > 0; j++) {
    	        int mod = n % b;
    	        n /= b;
    	        if (j % 2 == 1 && mod != 0) {
    	            n++;
    	            mod = b - mod;
    	        }
    	        tmp.append(mod);
    	    }
    	    if (tmp.length() == 0) {
    	        tmp.append("0");
    	    }
    	    sb.append(tmp.reverse()).append("\n");
    	}
    	System.out.print(sb);
    }
}
0