結果

問題 No.499 7進数変換
ユーザー shinwisteriashinwisteria
提出日時 2017-04-08 10:26:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 410 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-07-17 23:35:39
合計ジャッジ時間 8,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,104 KB
testcase_01 AC 137 ms
54,076 KB
testcase_02 AC 135 ms
53,900 KB
testcase_03 AC 135 ms
53,884 KB
testcase_04 AC 137 ms
54,144 KB
testcase_05 AC 136 ms
53,872 KB
testcase_06 AC 135 ms
53,516 KB
testcase_07 AC 134 ms
53,888 KB
testcase_08 AC 140 ms
54,132 KB
testcase_09 AC 136 ms
54,016 KB
testcase_10 AC 140 ms
54,152 KB
testcase_11 AC 136 ms
53,768 KB
testcase_12 AC 137 ms
54,172 KB
testcase_13 AC 137 ms
53,596 KB
testcase_14 AC 137 ms
53,664 KB
testcase_15 AC 137 ms
53,888 KB
testcase_16 AC 139 ms
54,040 KB
testcase_17 AC 140 ms
53,896 KB
testcase_18 AC 139 ms
53,892 KB
testcase_19 AC 138 ms
54,008 KB
testcase_20 AC 138 ms
54,080 KB
testcase_21 AC 136 ms
54,012 KB
testcase_22 AC 138 ms
53,848 KB
testcase_23 AC 140 ms
53,764 KB
testcase_24 AC 135 ms
54,072 KB
testcase_25 AC 136 ms
53,652 KB
testcase_26 AC 136 ms
53,492 KB
testcase_27 AC 136 ms
54,092 KB
testcase_28 AC 139 ms
54,016 KB
testcase_29 AC 135 ms
53,828 KB
testcase_30 AC 141 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Sevenshinsu {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		StringBuilder str = new StringBuilder();
		if(N == 0){
			str.append("0");
		}
		while(N != 0){
			int k = N%7;
			str.insert(0, k);
			N /= 7;
		}
		System.out.println(str);

	}

}
0