結果

問題 No.2087 基数の変換
ユーザー viral8viral8
提出日時 2022-10-01 09:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-06-06 03:04:10
合計ジャッジ時間 9,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,984 KB
testcase_01 AC 119 ms
41,188 KB
testcase_02 AC 117 ms
41,164 KB
testcase_03 AC 104 ms
40,188 KB
testcase_04 AC 105 ms
40,992 KB
testcase_05 AC 114 ms
41,668 KB
testcase_06 AC 108 ms
41,064 KB
testcase_07 AC 120 ms
41,456 KB
testcase_08 AC 106 ms
39,644 KB
testcase_09 AC 113 ms
40,128 KB
testcase_10 AC 107 ms
41,120 KB
testcase_11 AC 119 ms
41,372 KB
testcase_12 AC 118 ms
41,108 KB
testcase_13 AC 122 ms
41,580 KB
testcase_14 AC 120 ms
41,352 KB
testcase_15 AC 104 ms
41,456 KB
testcase_16 AC 119 ms
41,160 KB
testcase_17 AC 112 ms
40,168 KB
testcase_18 AC 104 ms
39,888 KB
testcase_19 AC 111 ms
40,552 KB
testcase_20 AC 121 ms
41,044 KB
testcase_21 AC 120 ms
41,152 KB
testcase_22 AC 111 ms
41,064 KB
testcase_23 AC 120 ms
41,272 KB
testcase_24 AC 121 ms
41,152 KB
testcase_25 AC 110 ms
40,216 KB
testcase_26 AC 122 ms
41,316 KB
testcase_27 AC 118 ms
41,200 KB
testcase_28 AC 117 ms
41,668 KB
testcase_29 AC 119 ms
41,388 KB
testcase_30 AC 120 ms
41,096 KB
testcase_31 AC 109 ms
40,948 KB
testcase_32 AC 107 ms
41,144 KB
testcase_33 AC 103 ms
41,304 KB
testcase_34 AC 106 ms
39,868 KB
testcase_35 AC 120 ms
41,260 KB
testcase_36 AC 119 ms
41,284 KB
testcase_37 AC 121 ms
41,280 KB
testcase_38 AC 110 ms
40,048 KB
testcase_39 AC 109 ms
41,200 KB
testcase_40 AC 108 ms
41,172 KB
testcase_41 AC 110 ms
40,260 KB
testcase_42 AC 114 ms
41,424 KB
testcase_43 AC 124 ms
41,104 KB
testcase_44 AC 113 ms
40,920 KB
testcase_45 AC 120 ms
41,200 KB
testcase_46 AC 117 ms
41,384 KB
testcase_47 AC 108 ms
40,984 KB
testcase_48 AC 118 ms
41,340 KB
testcase_49 AC 114 ms
41,332 KB
testcase_50 AC 117 ms
41,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        System.out.println(Integer.toString(M,N));
    }
}
0