結果

問題 No.499 7進数変換
ユーザー Amanita2016Amanita2016
提出日時 2017-07-07 00:52:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 628 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 75,896 KB
実行使用メモリ 41,860 KB
最終ジャッジ日時 2024-10-06 03:58:09
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,400 KB
testcase_01 AC 132 ms
41,160 KB
testcase_02 AC 132 ms
41,332 KB
testcase_03 AC 130 ms
41,352 KB
testcase_04 AC 134 ms
41,184 KB
testcase_05 AC 132 ms
41,200 KB
testcase_06 AC 131 ms
41,004 KB
testcase_07 AC 130 ms
41,368 KB
testcase_08 AC 131 ms
41,860 KB
testcase_09 AC 119 ms
41,072 KB
testcase_10 AC 128 ms
41,376 KB
testcase_11 AC 114 ms
41,268 KB
testcase_12 AC 129 ms
41,204 KB
testcase_13 AC 129 ms
41,260 KB
testcase_14 AC 128 ms
41,364 KB
testcase_15 AC 130 ms
41,432 KB
testcase_16 AC 134 ms
41,472 KB
testcase_17 AC 118 ms
41,108 KB
testcase_18 AC 132 ms
41,356 KB
testcase_19 AC 129 ms
41,480 KB
testcase_20 AC 130 ms
41,460 KB
testcase_21 AC 130 ms
41,388 KB
testcase_22 AC 129 ms
41,208 KB
testcase_23 AC 129 ms
41,404 KB
testcase_24 AC 131 ms
41,480 KB
testcase_25 AC 130 ms
41,440 KB
testcase_26 AC 130 ms
41,212 KB
testcase_27 AC 128 ms
41,268 KB
testcase_28 AC 130 ms
41,572 KB
testcase_29 AC 131 ms
41,484 KB
testcase_30 AC 132 ms
41,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int dec = sc.nextInt();
		String sep = "";
		int num = 7;
		int power = num;
		while(true){
			int work = dec / power;
			if(work <= 0){
				break;
			}
			power *= num;
			
		}
		while((power /= num) > 0){
			for(int i = 1 ; i <= num ; i++){
				int work = dec / (power*i);
				if(work <= 0){
					sep += Integer.toString(i-1);
					if(i != 1){
						dec %= (power*(i-1));
					}
					break;
				}
			}
		}
		System.out.println(sep);
	}

}
0