結果

問題 No.499 7進数変換
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-04-07 22:33:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 431 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 75,976 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-07-16 01:02:26
合計ジャッジ時間 7,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,108 KB
testcase_01 AC 120 ms
41,108 KB
testcase_02 AC 127 ms
41,400 KB
testcase_03 AC 124 ms
41,260 KB
testcase_04 AC 122 ms
41,312 KB
testcase_05 AC 121 ms
41,432 KB
testcase_06 AC 107 ms
40,160 KB
testcase_07 AC 120 ms
41,396 KB
testcase_08 AC 125 ms
41,108 KB
testcase_09 AC 120 ms
41,252 KB
testcase_10 AC 119 ms
41,364 KB
testcase_11 AC 119 ms
40,852 KB
testcase_12 AC 121 ms
41,304 KB
testcase_13 AC 123 ms
41,412 KB
testcase_14 AC 107 ms
40,240 KB
testcase_15 AC 109 ms
40,124 KB
testcase_16 AC 121 ms
41,380 KB
testcase_17 AC 118 ms
41,116 KB
testcase_18 AC 100 ms
39,868 KB
testcase_19 AC 119 ms
41,408 KB
testcase_20 AC 122 ms
41,404 KB
testcase_21 AC 120 ms
41,132 KB
testcase_22 AC 109 ms
40,248 KB
testcase_23 AC 111 ms
39,868 KB
testcase_24 AC 127 ms
41,492 KB
testcase_25 AC 125 ms
41,404 KB
testcase_26 AC 121 ms
41,288 KB
testcase_27 AC 126 ms
41,380 KB
testcase_28 AC 109 ms
40,052 KB
testcase_29 AC 127 ms
41,076 KB
testcase_30 AC 127 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        ArrayList<Integer> L = new ArrayList<>();
        while(true){
            L.add(N%7);
            N/=7;
            if(N==0)break;
        }
        for(int i=L.size()-1; i>=0; i--){
            System.out.print(L.get(i));
        }System.out.println();
    }
}
0