結果

問題 No.499 7進数変換
ユーザー kazapyon27kazapyon27
提出日時 2017-05-28 10:05:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 3,389 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 50,300 KB
最終ジャッジ日時 2024-09-21 15:06:54
合計ジャッジ時間 6,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 56 ms
36,940 KB
testcase_02 AC 57 ms
37,096 KB
testcase_03 AC 56 ms
37,192 KB
testcase_04 AC 56 ms
36,720 KB
testcase_05 AC 58 ms
37,204 KB
testcase_06 AC 57 ms
37,168 KB
testcase_07 AC 55 ms
36,964 KB
testcase_08 AC 56 ms
37,368 KB
testcase_09 AC 58 ms
37,016 KB
testcase_10 AC 56 ms
37,156 KB
testcase_11 AC 55 ms
36,828 KB
testcase_12 AC 56 ms
36,844 KB
testcase_13 AC 56 ms
36,924 KB
testcase_14 AC 56 ms
36,932 KB
testcase_15 AC 57 ms
37,064 KB
testcase_16 AC 56 ms
36,904 KB
testcase_17 AC 56 ms
37,052 KB
testcase_18 AC 57 ms
36,712 KB
testcase_19 AC 57 ms
37,076 KB
testcase_20 AC 56 ms
37,060 KB
testcase_21 AC 57 ms
37,140 KB
testcase_22 AC 57 ms
36,860 KB
testcase_23 AC 58 ms
36,944 KB
testcase_24 AC 58 ms
37,008 KB
testcase_25 AC 57 ms
37,140 KB
testcase_26 AC 59 ms
37,056 KB
testcase_27 AC 57 ms
37,144 KB
testcase_28 AC 56 ms
37,008 KB
testcase_29 AC 55 ms
36,964 KB
testcase_30 AC 56 ms
37,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.499 7進数変換*/
import java.io.*;
public class No499 {
	public static void main(String[] args) {
		int TransNumber,n=0;
		String s_number=new String();
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			TransNumber=Integer.parseInt(input.readLine());
			while(TransNumber>(int)Math.pow(7, n)-1){
				n++;
			}
			while(n>0){
				s_number=s_number.concat(Integer.toString(TransNumber/(int)Math.pow(7, n-1)));
				TransNumber%=(int)Math.pow(7, n-1);
				n--;
			}
			System.out.println(s_number);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0