結果

問題 No.499 7進数変換
ユーザー GoryudyumaGoryudyuma
提出日時 2017-05-06 00:33:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-09-14 09:39:39
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
40,140 KB
testcase_02 AC 132 ms
41,108 KB
testcase_03 AC 136 ms
41,228 KB
testcase_04 AC 119 ms
39,872 KB
testcase_05 AC 136 ms
41,240 KB
testcase_06 AC 120 ms
40,300 KB
testcase_07 AC 132 ms
41,196 KB
testcase_08 AC 131 ms
40,836 KB
testcase_09 AC 117 ms
39,780 KB
testcase_10 AC 118 ms
40,132 KB
testcase_11 AC 132 ms
41,012 KB
testcase_12 AC 131 ms
40,852 KB
testcase_13 AC 117 ms
39,688 KB
testcase_14 AC 127 ms
40,964 KB
testcase_15 AC 130 ms
41,228 KB
testcase_16 AC 133 ms
41,164 KB
testcase_17 AC 132 ms
40,996 KB
testcase_18 AC 131 ms
40,984 KB
testcase_19 AC 133 ms
41,152 KB
testcase_20 AC 128 ms
41,016 KB
testcase_21 AC 132 ms
41,180 KB
testcase_22 AC 132 ms
40,968 KB
testcase_23 AC 129 ms
40,980 KB
testcase_24 AC 129 ms
41,180 KB
testcase_25 AC 129 ms
40,984 KB
testcase_26 AC 132 ms
40,932 KB
testcase_27 AC 131 ms
40,812 KB
testcase_28 AC 129 ms
41,196 KB
testcase_29 AC 133 ms
41,128 KB
testcase_30 AC 133 ms
40,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
        public static void main(String[] args){
                try(Scanner sc = new Scanner(System.in)){
                        solve(sc.nextLong());
                        System.out.println("");
                }
        }
        private static void solve(long N){
                if(N==0){
                        return;
                }
                solve(N/7);
                System.out.print(N%7);
                return;
        }
}
0