結果

問題 No.499 7進数変換
ユーザー tentententen
提出日時 2020-09-10 10:06:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 78,268 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-06-01 10:41:59
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,200 KB
testcase_01 AC 133 ms
53,988 KB
testcase_02 AC 134 ms
54,024 KB
testcase_03 AC 134 ms
54,016 KB
testcase_04 AC 131 ms
54,144 KB
testcase_05 AC 133 ms
53,984 KB
testcase_06 AC 131 ms
54,048 KB
testcase_07 AC 132 ms
54,272 KB
testcase_08 AC 132 ms
53,756 KB
testcase_09 AC 131 ms
54,004 KB
testcase_10 AC 131 ms
54,052 KB
testcase_11 AC 130 ms
54,408 KB
testcase_12 AC 130 ms
54,152 KB
testcase_13 AC 131 ms
54,008 KB
testcase_14 AC 132 ms
54,500 KB
testcase_15 AC 131 ms
54,360 KB
testcase_16 AC 118 ms
52,740 KB
testcase_17 AC 131 ms
54,332 KB
testcase_18 AC 134 ms
54,016 KB
testcase_19 AC 131 ms
53,860 KB
testcase_20 AC 132 ms
54,080 KB
testcase_21 AC 131 ms
53,972 KB
testcase_22 AC 133 ms
53,980 KB
testcase_23 AC 130 ms
53,884 KB
testcase_24 AC 133 ms
54,256 KB
testcase_25 AC 131 ms
53,812 KB
testcase_26 AC 134 ms
54,256 KB
testcase_27 AC 133 ms
54,040 KB
testcase_28 AC 133 ms
54,324 KB
testcase_29 AC 140 ms
54,096 KB
testcase_30 AC 134 ms
54,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	if (n == 0) {
    	    System.out.println(0);
    	    return;
    	}
    	StringBuilder sb = new StringBuilder();
    	while (n > 0) {
    	    sb.append(n % 7);
    	    n /= 7;
    	}
    	System.out.println(sb.reverse());
    }
}
0