結果

問題 No.499 7進数変換
ユーザー syuki791syuki791
提出日時 2017-07-02 16:19:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 572 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-10-05 08:35:27
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
39,748 KB
testcase_01 AC 105 ms
41,300 KB
testcase_02 AC 111 ms
40,976 KB
testcase_03 AC 107 ms
41,180 KB
testcase_04 AC 104 ms
40,940 KB
testcase_05 AC 93 ms
39,748 KB
testcase_06 AC 93 ms
39,996 KB
testcase_07 AC 92 ms
40,044 KB
testcase_08 AC 97 ms
40,472 KB
testcase_09 AC 102 ms
40,988 KB
testcase_10 AC 93 ms
39,772 KB
testcase_11 AC 100 ms
39,964 KB
testcase_12 AC 112 ms
40,976 KB
testcase_13 AC 95 ms
39,756 KB
testcase_14 AC 90 ms
39,676 KB
testcase_15 AC 104 ms
40,896 KB
testcase_16 AC 106 ms
40,836 KB
testcase_17 AC 93 ms
39,824 KB
testcase_18 AC 93 ms
40,312 KB
testcase_19 AC 105 ms
41,012 KB
testcase_20 AC 101 ms
40,568 KB
testcase_21 AC 105 ms
41,060 KB
testcase_22 AC 101 ms
41,068 KB
testcase_23 AC 106 ms
41,032 KB
testcase_24 AC 102 ms
41,024 KB
testcase_25 AC 92 ms
39,908 KB
testcase_26 AC 89 ms
39,536 KB
testcase_27 AC 102 ms
40,780 KB
testcase_28 AC 101 ms
40,908 KB
testcase_29 AC 91 ms
40,176 KB
testcase_30 AC 95 ms
39,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;

public class Main {
	
	public static void main(String[] args){
		Scanner s = new Scanner(System.in);
		String str = s.next();
		s.close();
		
		long l = Long.parseLong(str);
		long ltmp = l;
		Stack<Long> stack = new Stack<Long>();
		
		while(true){			
			stack.push(ltmp%7);
			if(ltmp/7 < 7){
				stack.push(ltmp/7);
				break;
			}
			ltmp = ltmp/7;
		}
		long ans = 0;
		long pow = stack.size()-1;
		while(!stack.empty()){
			ans += stack.pop()* (long)Math.pow(10, pow);
			pow--;
		}
		System.out.println(ans);
	}

}
0