結果

問題 No.499 7進数変換
ユーザー GrenacheGrenache
提出日時 2017-04-09 10:57:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-18 01:25:12
合計ジャッジ時間 8,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
54,316 KB
testcase_02 AC 139 ms
54,272 KB
testcase_03 AC 138 ms
54,164 KB
testcase_04 AC 135 ms
54,308 KB
testcase_05 AC 134 ms
54,220 KB
testcase_06 AC 133 ms
53,988 KB
testcase_07 AC 134 ms
54,124 KB
testcase_08 AC 133 ms
54,204 KB
testcase_09 AC 133 ms
54,064 KB
testcase_10 AC 134 ms
54,232 KB
testcase_11 AC 137 ms
54,036 KB
testcase_12 AC 136 ms
54,128 KB
testcase_13 AC 145 ms
54,132 KB
testcase_14 AC 137 ms
54,032 KB
testcase_15 AC 140 ms
54,168 KB
testcase_16 AC 133 ms
54,112 KB
testcase_17 AC 136 ms
54,076 KB
testcase_18 AC 133 ms
54,072 KB
testcase_19 AC 134 ms
53,896 KB
testcase_20 AC 133 ms
54,148 KB
testcase_21 AC 135 ms
53,980 KB
testcase_22 AC 135 ms
54,204 KB
testcase_23 AC 133 ms
54,100 KB
testcase_24 AC 135 ms
54,004 KB
testcase_25 AC 135 ms
54,192 KB
testcase_26 AC 136 ms
54,116 KB
testcase_27 AC 135 ms
54,052 KB
testcase_28 AC 133 ms
54,204 KB
testcase_29 AC 136 ms
54,192 KB
testcase_30 AC 133 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder499 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		StringBuilder ret = new StringBuilder();
		while (n > 0) {
			ret.append((char)('0' + n % 7));
			n /= 7;
		}

		pr.println(ret.reverse());
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0