結果

問題 No.499 7進数変換
ユーザー akitsu818akitsu818
提出日時 2017-04-07 23:33:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 56,164 KB
最終ジャッジ日時 2024-07-16 03:13:07
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,140 KB
testcase_01 AC 108 ms
52,948 KB
testcase_02 AC 123 ms
54,184 KB
testcase_03 AC 108 ms
53,008 KB
testcase_04 AC 122 ms
54,108 KB
testcase_05 AC 120 ms
54,128 KB
testcase_06 AC 122 ms
54,148 KB
testcase_07 AC 108 ms
53,012 KB
testcase_08 AC 122 ms
54,320 KB
testcase_09 AC 106 ms
53,080 KB
testcase_10 AC 112 ms
53,436 KB
testcase_11 AC 111 ms
53,640 KB
testcase_12 AC 110 ms
52,896 KB
testcase_13 AC 123 ms
54,192 KB
testcase_14 AC 120 ms
54,212 KB
testcase_15 AC 123 ms
53,920 KB
testcase_16 AC 122 ms
54,092 KB
testcase_17 AC 124 ms
54,048 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String args[]){
        Scanner cin = new Scanner(System.in);
        int target = cin.nextInt();
        
        int tmp = target;
        int mod = target%7;
        while(tmp>6){
            tmp = tmp/7;
            System.out.print(tmp);
        }
        System.out.println(mod);
    }
}
0