結果

問題 No.499 7進数変換
ユーザー kazapyon27kazapyon27
提出日時 2017-05-28 10:27:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 606 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 37,196 KB
最終ジャッジ日時 2024-09-21 15:07:01
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
37,112 KB
testcase_01 AC 58 ms
36,708 KB
testcase_02 AC 57 ms
37,132 KB
testcase_03 AC 58 ms
36,576 KB
testcase_04 AC 58 ms
37,112 KB
testcase_05 AC 57 ms
36,728 KB
testcase_06 AC 55 ms
37,092 KB
testcase_07 AC 55 ms
37,048 KB
testcase_08 AC 55 ms
37,104 KB
testcase_09 AC 55 ms
36,928 KB
testcase_10 AC 55 ms
37,148 KB
testcase_11 AC 55 ms
37,092 KB
testcase_12 AC 55 ms
37,028 KB
testcase_13 AC 56 ms
37,196 KB
testcase_14 AC 55 ms
37,148 KB
testcase_15 AC 56 ms
37,052 KB
testcase_16 AC 56 ms
37,076 KB
testcase_17 AC 57 ms
37,064 KB
testcase_18 AC 54 ms
37,156 KB
testcase_19 AC 58 ms
37,136 KB
testcase_20 AC 59 ms
37,092 KB
testcase_21 AC 56 ms
37,148 KB
testcase_22 AC 57 ms
36,960 KB
testcase_23 AC 56 ms
36,716 KB
testcase_24 AC 59 ms
36,844 KB
testcase_25 AC 56 ms
37,048 KB
testcase_26 AC 56 ms
36,892 KB
testcase_27 AC 56 ms
36,964 KB
testcase_28 AC 55 ms
36,728 KB
testcase_29 AC 55 ms
37,092 KB
testcase_30 AC 55 ms
37,112 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)){
				n++;
			}
			while(n>=0){
				s_number=s_number.concat(Integer.toString(TransNumber/(int)Math.pow(7, n)));
				TransNumber%=(int)Math.pow(7, n);
				n--;
			}
			System.out.println(Long.parseLong(s_number));
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0