結果

問題 No.499 7進数変換
ユーザー YamaKasaYamaKasa
提出日時 2018-05-25 02:15:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 222 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 71,608 KB
実行使用メモリ 56,284 KB
最終ジャッジ日時 2023-09-11 03:19:25
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,708 KB
testcase_01 AC 128 ms
55,716 KB
testcase_02 AC 126 ms
56,016 KB
testcase_03 AC 126 ms
55,652 KB
testcase_04 AC 128 ms
55,800 KB
testcase_05 AC 127 ms
55,732 KB
testcase_06 AC 125 ms
55,804 KB
testcase_07 AC 124 ms
55,584 KB
testcase_08 AC 125 ms
55,560 KB
testcase_09 AC 125 ms
55,816 KB
testcase_10 AC 126 ms
53,708 KB
testcase_11 AC 125 ms
56,212 KB
testcase_12 AC 124 ms
55,560 KB
testcase_13 AC 122 ms
55,888 KB
testcase_14 AC 124 ms
55,808 KB
testcase_15 AC 126 ms
56,284 KB
testcase_16 AC 126 ms
55,856 KB
testcase_17 AC 124 ms
55,820 KB
testcase_18 AC 124 ms
55,732 KB
testcase_19 AC 124 ms
56,044 KB
testcase_20 AC 124 ms
55,620 KB
testcase_21 AC 123 ms
55,900 KB
testcase_22 AC 123 ms
55,972 KB
testcase_23 AC 124 ms
55,900 KB
testcase_24 AC 123 ms
56,084 KB
testcase_25 AC 124 ms
56,284 KB
testcase_26 AC 123 ms
55,792 KB
testcase_27 AC 123 ms
53,964 KB
testcase_28 AC 125 ms
56,000 KB
testcase_29 AC 125 ms
55,952 KB
testcase_30 AC 124 ms
55,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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