結果

問題 No.499 7進数変換
ユーザー YamaKasaYamaKasa
提出日時 2018-05-25 02:15:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 222 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-06-28 17:51:00
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,376 KB
testcase_01 AC 99 ms
41,768 KB
testcase_02 AC 111 ms
41,200 KB
testcase_03 AC 113 ms
41,228 KB
testcase_04 AC 115 ms
41,280 KB
testcase_05 AC 109 ms
41,308 KB
testcase_06 AC 112 ms
41,200 KB
testcase_07 AC 103 ms
40,280 KB
testcase_08 AC 114 ms
41,212 KB
testcase_09 AC 95 ms
41,548 KB
testcase_10 AC 100 ms
41,240 KB
testcase_11 AC 95 ms
41,660 KB
testcase_12 AC 110 ms
41,424 KB
testcase_13 AC 100 ms
41,140 KB
testcase_14 AC 109 ms
41,440 KB
testcase_15 AC 111 ms
40,372 KB
testcase_16 AC 111 ms
41,224 KB
testcase_17 AC 107 ms
41,452 KB
testcase_18 AC 110 ms
40,380 KB
testcase_19 AC 130 ms
41,244 KB
testcase_20 AC 115 ms
41,428 KB
testcase_21 AC 109 ms
41,352 KB
testcase_22 AC 99 ms
41,124 KB
testcase_23 AC 109 ms
41,040 KB
testcase_24 AC 113 ms
40,320 KB
testcase_25 AC 120 ms
41,660 KB
testcase_26 AC 125 ms
41,084 KB
testcase_27 AC 118 ms
41,544 KB
testcase_28 AC 119 ms
41,452 KB
testcase_29 AC 119 ms
41,532 KB
testcase_30 AC 116 ms
41,124 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