結果

問題 No.499 7進数変換
ユーザー tsunabittsunabit
提出日時 2019-06-12 21:05:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 251 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 79,072 KB
実行使用メモリ 56,068 KB
最終ジャッジ日時 2024-04-20 01:36:52
合計ジャッジ時間 7,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,364 KB
testcase_01 AC 107 ms
52,728 KB
testcase_02 AC 102 ms
52,912 KB
testcase_03 AC 106 ms
52,820 KB
testcase_04 AC 106 ms
52,980 KB
testcase_05 AC 113 ms
54,108 KB
testcase_06 AC 117 ms
53,880 KB
testcase_07 AC 120 ms
54,060 KB
testcase_08 AC 114 ms
53,996 KB
testcase_09 AC 110 ms
52,844 KB
testcase_10 AC 108 ms
53,016 KB
testcase_11 AC 111 ms
53,676 KB
testcase_12 AC 116 ms
54,244 KB
testcase_13 AC 114 ms
54,160 KB
testcase_14 AC 103 ms
52,964 KB
testcase_15 AC 117 ms
54,100 KB
testcase_16 AC 108 ms
54,160 KB
testcase_17 AC 116 ms
54,148 KB
testcase_18 AC 102 ms
54,180 KB
testcase_19 AC 111 ms
56,068 KB
testcase_20 AC 113 ms
54,024 KB
testcase_21 AC 100 ms
53,056 KB
testcase_22 AC 96 ms
52,596 KB
testcase_23 AC 103 ms
52,988 KB
testcase_24 AC 101 ms
52,992 KB
testcase_25 AC 112 ms
54,080 KB
testcase_26 AC 104 ms
53,100 KB
testcase_27 AC 118 ms
54,188 KB
testcase_28 AC 111 ms
53,848 KB
testcase_29 AC 121 ms
54,064 KB
testcase_30 AC 109 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

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