結果

問題 No.499 7進数変換
ユーザー GrenacheGrenache
提出日時 2017-04-09 10:58:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 694 bytes
コンパイル時間 3,550 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-07-18 01:25:25
合計ジャッジ時間 7,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,268 KB
testcase_01 AC 124 ms
41,176 KB
testcase_02 AC 123 ms
41,128 KB
testcase_03 AC 124 ms
41,280 KB
testcase_04 AC 129 ms
41,272 KB
testcase_05 AC 119 ms
41,056 KB
testcase_06 AC 114 ms
41,388 KB
testcase_07 AC 127 ms
41,280 KB
testcase_08 AC 122 ms
41,116 KB
testcase_09 AC 123 ms
41,164 KB
testcase_10 AC 123 ms
40,944 KB
testcase_11 AC 122 ms
41,396 KB
testcase_12 AC 106 ms
41,140 KB
testcase_13 AC 123 ms
41,368 KB
testcase_14 AC 131 ms
41,152 KB
testcase_15 AC 127 ms
41,132 KB
testcase_16 AC 131 ms
41,396 KB
testcase_17 AC 130 ms
40,948 KB
testcase_18 AC 133 ms
41,516 KB
testcase_19 AC 111 ms
41,868 KB
testcase_20 AC 117 ms
41,184 KB
testcase_21 AC 117 ms
40,956 KB
testcase_22 AC 120 ms
41,052 KB
testcase_23 AC 120 ms
41,268 KB
testcase_24 AC 107 ms
40,812 KB
testcase_25 AC 116 ms
41,068 KB
testcase_26 AC 126 ms
41,444 KB
testcase_27 AC 123 ms
41,440 KB
testcase_28 AC 110 ms
40,992 KB
testcase_29 AC 122 ms
41,468 KB
testcase_30 AC 119 ms
41,256 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();

		if (n == 0) {
			pr.println(0);
			return;
		}

		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