結果

問題 No.499 7進数変換
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 01:47:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 56,936 KB
最終ジャッジ日時 2024-06-23 20:08:36
合計ジャッジ時間 8,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
55,128 KB
testcase_01 AC 168 ms
55,056 KB
testcase_02 AC 163 ms
55,020 KB
testcase_03 AC 163 ms
55,044 KB
testcase_04 AC 159 ms
55,012 KB
testcase_05 AC 162 ms
56,936 KB
testcase_06 AC 163 ms
54,928 KB
testcase_07 AC 167 ms
54,928 KB
testcase_08 AC 167 ms
55,112 KB
testcase_09 AC 166 ms
55,092 KB
testcase_10 AC 163 ms
54,932 KB
testcase_11 AC 165 ms
55,176 KB
testcase_12 AC 166 ms
55,224 KB
testcase_13 AC 166 ms
55,184 KB
testcase_14 AC 164 ms
55,124 KB
testcase_15 AC 161 ms
54,868 KB
testcase_16 AC 164 ms
54,972 KB
testcase_17 AC 164 ms
55,020 KB
testcase_18 AC 167 ms
54,772 KB
testcase_19 AC 166 ms
54,936 KB
testcase_20 AC 165 ms
54,980 KB
testcase_21 AC 165 ms
55,136 KB
testcase_22 AC 165 ms
55,080 KB
testcase_23 AC 166 ms
55,028 KB
testcase_24 AC 164 ms
55,180 KB
testcase_25 AC 165 ms
55,136 KB
testcase_26 AC 163 ms
55,012 KB
testcase_27 AC 163 ms
55,204 KB
testcase_28 AC 163 ms
55,016 KB
testcase_29 AC 165 ms
55,004 KB
testcase_30 AC 164 ms
55,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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