結果

問題 No.499 7進数変換
ユーザー yagi2yagi2
提出日時 2017-04-14 10:21:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 71,704 KB
実行使用メモリ 56,076 KB
最終ジャッジ日時 2023-09-25 19:14:04
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,932 KB
testcase_01 AC 122 ms
55,796 KB
testcase_02 AC 119 ms
55,648 KB
testcase_03 AC 119 ms
55,880 KB
testcase_04 AC 117 ms
55,860 KB
testcase_05 AC 117 ms
55,464 KB
testcase_06 AC 116 ms
55,668 KB
testcase_07 AC 117 ms
55,444 KB
testcase_08 AC 119 ms
55,660 KB
testcase_09 AC 119 ms
55,500 KB
testcase_10 AC 118 ms
55,980 KB
testcase_11 AC 121 ms
55,360 KB
testcase_12 AC 119 ms
55,712 KB
testcase_13 AC 118 ms
55,560 KB
testcase_14 AC 121 ms
55,496 KB
testcase_15 AC 120 ms
55,860 KB
testcase_16 AC 118 ms
56,076 KB
testcase_17 AC 116 ms
55,356 KB
testcase_18 AC 121 ms
55,344 KB
testcase_19 AC 118 ms
55,440 KB
testcase_20 AC 120 ms
55,756 KB
testcase_21 AC 119 ms
55,852 KB
testcase_22 AC 117 ms
55,508 KB
testcase_23 AC 119 ms
55,612 KB
testcase_24 AC 121 ms
53,544 KB
testcase_25 AC 119 ms
55,340 KB
testcase_26 AC 119 ms
55,348 KB
testcase_27 AC 119 ms
55,468 KB
testcase_28 AC 118 ms
55,636 KB
testcase_29 AC 119 ms
55,524 KB
testcase_30 AC 118 ms
55,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long  N = Long.parseLong(sc.next());
        System.out.println(Long.toString(N, 7));
    }
}
0