結果

問題 No.499 7進数変換
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-06-01 17:08:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 268 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 9,341 ms
コンパイル使用メモリ 424,436 KB
実行使用メモリ 50,460 KB
最終ジャッジ日時 2024-11-20 08:39:33
合計ジャッジ時間 18,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
49,928 KB
testcase_01 AC 258 ms
49,924 KB
testcase_02 AC 263 ms
49,980 KB
testcase_03 AC 255 ms
49,828 KB
testcase_04 AC 253 ms
50,004 KB
testcase_05 AC 259 ms
49,876 KB
testcase_06 AC 255 ms
49,852 KB
testcase_07 AC 257 ms
50,128 KB
testcase_08 AC 259 ms
49,976 KB
testcase_09 AC 259 ms
49,708 KB
testcase_10 AC 253 ms
49,948 KB
testcase_11 AC 254 ms
49,984 KB
testcase_12 AC 260 ms
49,860 KB
testcase_13 AC 261 ms
49,844 KB
testcase_14 AC 252 ms
49,708 KB
testcase_15 AC 256 ms
49,816 KB
testcase_16 AC 256 ms
49,812 KB
testcase_17 AC 256 ms
49,780 KB
testcase_18 AC 259 ms
49,820 KB
testcase_19 AC 268 ms
49,796 KB
testcase_20 AC 264 ms
49,900 KB
testcase_21 AC 261 ms
50,072 KB
testcase_22 AC 261 ms
49,752 KB
testcase_23 AC 260 ms
49,808 KB
testcase_24 AC 256 ms
50,088 KB
testcase_25 AC 259 ms
50,092 KB
testcase_26 AC 268 ms
49,964 KB
testcase_27 AC 260 ms
50,460 KB
testcase_28 AC 257 ms
49,868 KB
testcase_29 AC 259 ms
49,708 KB
testcase_30 AC 258 ms
49,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    var N = readLine()!!.toInt()

    var ans = ""
    if(N == 0) ans = "0"
    while(0 < N) {
        ans = (N % 7).toString() + ans
        N /= 7
    }
    println(ans)
}
0