結果

問題 No.499 7進数変換
ユーザー shinwisteriashinwisteria
提出日時 2017-04-08 10:24:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 2,983 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-07-17 23:35:15
合計ジャッジ時間 7,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 112 ms
53,128 KB
testcase_02 AC 131 ms
53,968 KB
testcase_03 AC 120 ms
53,628 KB
testcase_04 AC 107 ms
53,004 KB
testcase_05 AC 105 ms
52,968 KB
testcase_06 AC 104 ms
53,104 KB
testcase_07 AC 119 ms
54,052 KB
testcase_08 AC 118 ms
53,956 KB
testcase_09 AC 108 ms
53,024 KB
testcase_10 AC 121 ms
53,904 KB
testcase_11 AC 123 ms
53,520 KB
testcase_12 AC 122 ms
54,276 KB
testcase_13 AC 125 ms
54,240 KB
testcase_14 AC 123 ms
53,652 KB
testcase_15 AC 128 ms
53,868 KB
testcase_16 AC 115 ms
53,008 KB
testcase_17 AC 128 ms
53,896 KB
testcase_18 AC 127 ms
53,736 KB
testcase_19 AC 126 ms
54,068 KB
testcase_20 AC 126 ms
53,752 KB
testcase_21 AC 124 ms
53,984 KB
testcase_22 AC 118 ms
54,044 KB
testcase_23 AC 110 ms
53,008 KB
testcase_24 AC 133 ms
53,976 KB
testcase_25 AC 132 ms
53,788 KB
testcase_26 AC 130 ms
54,136 KB
testcase_27 AC 137 ms
53,692 KB
testcase_28 AC 124 ms
53,884 KB
testcase_29 AC 117 ms
54,024 KB
testcase_30 AC 124 ms
54,084 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();
		while(N != 0){
			int k = N%7;
			str.insert(0, k);
			N /= 7;
		}
		System.out.println(str);

	}

}
0