結果

問題 No.499 7進数変換
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-06-01 17:08:01
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 10,580 ms
コンパイル使用メモリ 428,984 KB
実行使用メモリ 49,804 KB
最終ジャッジ日時 2024-11-20 08:30:04
合計ジャッジ時間 21,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 296 ms
49,624 KB
testcase_02 AC 296 ms
49,644 KB
testcase_03 AC 296 ms
49,468 KB
testcase_04 AC 291 ms
49,756 KB
testcase_05 AC 291 ms
49,684 KB
testcase_06 AC 305 ms
49,548 KB
testcase_07 AC 303 ms
49,700 KB
testcase_08 AC 304 ms
49,564 KB
testcase_09 AC 300 ms
49,616 KB
testcase_10 AC 298 ms
49,612 KB
testcase_11 AC 301 ms
49,540 KB
testcase_12 AC 299 ms
49,740 KB
testcase_13 AC 299 ms
49,648 KB
testcase_14 AC 296 ms
49,576 KB
testcase_15 AC 297 ms
49,628 KB
testcase_16 AC 294 ms
49,508 KB
testcase_17 AC 297 ms
49,652 KB
testcase_18 AC 295 ms
49,476 KB
testcase_19 AC 293 ms
49,472 KB
testcase_20 AC 295 ms
49,780 KB
testcase_21 AC 296 ms
49,780 KB
testcase_22 AC 297 ms
49,608 KB
testcase_23 AC 300 ms
49,484 KB
testcase_24 AC 302 ms
49,680 KB
testcase_25 AC 306 ms
49,684 KB
testcase_26 AC 303 ms
49,616 KB
testcase_27 AC 298 ms
49,720 KB
testcase_28 AC 301 ms
49,608 KB
testcase_29 AC 305 ms
49,560 KB
testcase_30 AC 309 ms
49,552 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 = ""
    while(0 < N) {
        ans = (N % 7).toString() + ans
        N /= 7
    }
    println(ans)
}
0