結果

問題 No.2087 基数の変換
ユーザー shojin_proshojin_pro
提出日時 2022-09-30 21:30:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-06-02 04:58:09
合計ジャッジ時間 8,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,688 KB
testcase_01 AC 104 ms
52,932 KB
testcase_02 AC 109 ms
53,000 KB
testcase_03 AC 108 ms
54,100 KB
testcase_04 AC 122 ms
54,108 KB
testcase_05 AC 115 ms
54,052 KB
testcase_06 AC 111 ms
52,676 KB
testcase_07 AC 103 ms
53,012 KB
testcase_08 AC 113 ms
53,828 KB
testcase_09 AC 115 ms
53,840 KB
testcase_10 AC 115 ms
53,920 KB
testcase_11 AC 115 ms
53,968 KB
testcase_12 AC 120 ms
53,984 KB
testcase_13 AC 108 ms
52,764 KB
testcase_14 AC 104 ms
52,980 KB
testcase_15 AC 113 ms
53,816 KB
testcase_16 AC 101 ms
53,096 KB
testcase_17 AC 114 ms
53,840 KB
testcase_18 AC 98 ms
52,636 KB
testcase_19 AC 120 ms
53,848 KB
testcase_20 AC 116 ms
54,104 KB
testcase_21 AC 119 ms
54,132 KB
testcase_22 AC 112 ms
53,500 KB
testcase_23 AC 108 ms
53,508 KB
testcase_24 AC 121 ms
53,928 KB
testcase_25 AC 106 ms
52,676 KB
testcase_26 AC 104 ms
53,344 KB
testcase_27 AC 107 ms
52,804 KB
testcase_28 AC 113 ms
53,700 KB
testcase_29 AC 104 ms
53,084 KB
testcase_30 AC 108 ms
52,988 KB
testcase_31 AC 103 ms
52,884 KB
testcase_32 AC 113 ms
53,944 KB
testcase_33 AC 118 ms
53,984 KB
testcase_34 AC 119 ms
53,936 KB
testcase_35 AC 105 ms
52,980 KB
testcase_36 AC 102 ms
52,688 KB
testcase_37 AC 104 ms
52,984 KB
testcase_38 AC 105 ms
52,756 KB
testcase_39 AC 109 ms
52,676 KB
testcase_40 AC 104 ms
52,972 KB
testcase_41 AC 117 ms
54,064 KB
testcase_42 AC 100 ms
52,896 KB
testcase_43 AC 107 ms
53,596 KB
testcase_44 AC 114 ms
54,068 KB
testcase_45 AC 103 ms
54,152 KB
testcase_46 AC 111 ms
53,920 KB
testcase_47 AC 114 ms
54,116 KB
testcase_48 AC 112 ms
53,964 KB
testcase_49 AC 101 ms
52,968 KB
testcase_50 AC 115 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int b = sc.nextInt();
        int m = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        if(m > 0){
            while(m > 0){
                sb.append(m % b);
                m /= b;
            }
        }else{
            sb.append(0);
        }
        System.out.println(sb.reverse().toString());
    }
}
0