結果

問題 No.499 7進数変換
ユーザー tentententen
提出日時 2020-09-10 10:05:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 54,760 KB
最終ジャッジ日時 2024-06-01 10:41:34
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 133 ms
54,188 KB
testcase_02 AC 130 ms
53,960 KB
testcase_03 AC 132 ms
54,108 KB
testcase_04 AC 133 ms
54,068 KB
testcase_05 AC 132 ms
54,144 KB
testcase_06 AC 134 ms
54,112 KB
testcase_07 AC 133 ms
54,020 KB
testcase_08 AC 132 ms
54,228 KB
testcase_09 AC 135 ms
54,044 KB
testcase_10 AC 132 ms
53,984 KB
testcase_11 AC 133 ms
53,948 KB
testcase_12 AC 132 ms
54,132 KB
testcase_13 AC 132 ms
54,152 KB
testcase_14 AC 134 ms
54,364 KB
testcase_15 AC 135 ms
54,628 KB
testcase_16 AC 132 ms
54,124 KB
testcase_17 AC 133 ms
54,404 KB
testcase_18 AC 134 ms
54,012 KB
testcase_19 AC 133 ms
54,760 KB
testcase_20 AC 132 ms
54,384 KB
testcase_21 AC 133 ms
54,280 KB
testcase_22 AC 132 ms
54,148 KB
testcase_23 AC 132 ms
54,148 KB
testcase_24 AC 133 ms
54,120 KB
testcase_25 AC 133 ms
53,976 KB
testcase_26 AC 132 ms
54,040 KB
testcase_27 AC 133 ms
53,984 KB
testcase_28 AC 133 ms
54,024 KB
testcase_29 AC 133 ms
54,132 KB
testcase_30 AC 134 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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