結果

問題 No.499 7進数変換
ユーザー ぴろずぴろず
提出日時 2017-04-07 22:37:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-07-16 01:16:35
合計ジャッジ時間 6,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,700 KB
testcase_01 AC 122 ms
53,748 KB
testcase_02 AC 121 ms
54,176 KB
testcase_03 AC 124 ms
53,848 KB
testcase_04 AC 109 ms
52,844 KB
testcase_05 AC 124 ms
54,280 KB
testcase_06 AC 124 ms
53,944 KB
testcase_07 AC 121 ms
54,056 KB
testcase_08 AC 120 ms
54,176 KB
testcase_09 AC 118 ms
53,816 KB
testcase_10 AC 120 ms
54,112 KB
testcase_11 AC 122 ms
54,204 KB
testcase_12 AC 120 ms
54,208 KB
testcase_13 AC 124 ms
54,236 KB
testcase_14 AC 124 ms
54,184 KB
testcase_15 AC 123 ms
54,008 KB
testcase_16 AC 102 ms
52,680 KB
testcase_17 AC 123 ms
54,156 KB
testcase_18 AC 123 ms
53,980 KB
testcase_19 AC 121 ms
54,132 KB
testcase_20 AC 121 ms
54,328 KB
testcase_21 AC 121 ms
54,128 KB
testcase_22 AC 123 ms
54,188 KB
testcase_23 AC 110 ms
53,004 KB
testcase_24 AC 108 ms
52,864 KB
testcase_25 AC 124 ms
54,024 KB
testcase_26 AC 129 ms
54,016 KB
testcase_27 AC 120 ms
54,120 KB
testcase_28 AC 122 ms
53,980 KB
testcase_29 AC 123 ms
54,028 KB
testcase_30 AC 122 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no499;

import java.util.Scanner;

public class Main {

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

}
0