結果

問題 No.499 7進数変換
ユーザー fukuseifukusei
提出日時 2017-05-10 17:14:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 274 bytes
コンパイル時間 3,299 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-09-15 07:10:16
合計ジャッジ時間 8,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,088 KB
testcase_01 AC 130 ms
41,064 KB
testcase_02 AC 126 ms
41,532 KB
testcase_03 AC 129 ms
40,920 KB
testcase_04 AC 115 ms
40,048 KB
testcase_05 AC 131 ms
41,004 KB
testcase_06 AC 115 ms
39,836 KB
testcase_07 AC 131 ms
41,148 KB
testcase_08 AC 129 ms
41,368 KB
testcase_09 AC 115 ms
39,808 KB
testcase_10 AC 128 ms
40,836 KB
testcase_11 AC 130 ms
41,264 KB
testcase_12 AC 114 ms
39,808 KB
testcase_13 AC 128 ms
41,064 KB
testcase_14 AC 127 ms
40,912 KB
testcase_15 AC 126 ms
41,244 KB
testcase_16 AC 127 ms
41,200 KB
testcase_17 AC 127 ms
41,076 KB
testcase_18 AC 115 ms
40,104 KB
testcase_19 AC 117 ms
40,076 KB
testcase_20 AC 129 ms
40,976 KB
testcase_21 AC 130 ms
41,192 KB
testcase_22 AC 129 ms
40,856 KB
testcase_23 AC 113 ms
39,956 KB
testcase_24 AC 120 ms
40,104 KB
testcase_25 AC 127 ms
41,232 KB
testcase_26 AC 128 ms
41,016 KB
testcase_27 AC 127 ms
41,076 KB
testcase_28 AC 129 ms
41,032 KB
testcase_29 AC 128 ms
41,112 KB
testcase_30 AC 116 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class test {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int n = 7;
        String base7 = Integer.toString(num, n);
        System.out.println(base7); 
    }
}
0