結果

問題 No.2087 基数の変換
ユーザー shojin_proshojin_pro
提出日時 2022-09-30 21:29:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 56,132 KB
最終ジャッジ日時 2024-06-02 04:56:17
合計ジャッジ時間 9,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,928 KB
testcase_01 AC 122 ms
53,848 KB
testcase_02 AC 106 ms
52,792 KB
testcase_03 AC 117 ms
53,868 KB
testcase_04 AC 110 ms
52,976 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 114 ms
52,844 KB
testcase_08 AC 112 ms
53,100 KB
testcase_09 AC 109 ms
52,748 KB
testcase_10 AC 117 ms
54,384 KB
testcase_11 AC 109 ms
52,848 KB
testcase_12 AC 121 ms
54,052 KB
testcase_13 AC 121 ms
54,064 KB
testcase_14 AC 120 ms
53,984 KB
testcase_15 AC 120 ms
53,760 KB
testcase_16 AC 120 ms
54,072 KB
testcase_17 AC 106 ms
53,052 KB
testcase_18 AC 113 ms
53,480 KB
testcase_19 AC 110 ms
52,756 KB
testcase_20 AC 119 ms
53,872 KB
testcase_21 AC 118 ms
53,984 KB
testcase_22 AC 108 ms
52,552 KB
testcase_23 AC 108 ms
52,872 KB
testcase_24 AC 107 ms
52,980 KB
testcase_25 AC 118 ms
53,836 KB
testcase_26 AC 114 ms
53,748 KB
testcase_27 AC 119 ms
53,980 KB
testcase_28 AC 110 ms
52,760 KB
testcase_29 AC 118 ms
54,072 KB
testcase_30 AC 120 ms
54,000 KB
testcase_31 AC 109 ms
52,884 KB
testcase_32 AC 108 ms
52,656 KB
testcase_33 AC 122 ms
53,708 KB
testcase_34 AC 121 ms
54,092 KB
testcase_35 AC 122 ms
54,060 KB
testcase_36 AC 120 ms
54,048 KB
testcase_37 AC 108 ms
52,780 KB
testcase_38 AC 119 ms
54,032 KB
testcase_39 AC 109 ms
52,676 KB
testcase_40 AC 120 ms
54,076 KB
testcase_41 AC 119 ms
54,064 KB
testcase_42 AC 118 ms
54,136 KB
testcase_43 AC 113 ms
53,092 KB
testcase_44 AC 118 ms
54,044 KB
testcase_45 AC 119 ms
53,992 KB
testcase_46 AC 121 ms
54,036 KB
testcase_47 AC 117 ms
54,088 KB
testcase_48 AC 118 ms
54,036 KB
testcase_49 AC 106 ms
52,600 KB
testcase_50 AC 117 ms
53,316 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();
        while(m > 0){
            sb.append(m % b);
            m /= b;
        }
        System.out.println(sb.reverse().toString());
    }
}
0