結果

問題 No.499 7進数変換
ユーザー nobigomunobigomu
提出日時 2018-06-04 19:18:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 1,000 ms
コード長 189 bytes
コンパイル時間 10,425 ms
コンパイル使用メモリ 424,968 KB
実行使用メモリ 49,956 KB
最終ジャッジ日時 2024-11-20 16:01:24
合計ジャッジ時間 19,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
49,512 KB
testcase_01 AC 277 ms
49,580 KB
testcase_02 AC 276 ms
49,604 KB
testcase_03 AC 279 ms
49,736 KB
testcase_04 AC 273 ms
49,816 KB
testcase_05 AC 270 ms
49,688 KB
testcase_06 AC 272 ms
49,784 KB
testcase_07 AC 272 ms
49,520 KB
testcase_08 AC 284 ms
49,856 KB
testcase_09 AC 287 ms
49,812 KB
testcase_10 AC 281 ms
49,612 KB
testcase_11 AC 273 ms
49,820 KB
testcase_12 AC 275 ms
49,844 KB
testcase_13 AC 267 ms
49,580 KB
testcase_14 AC 275 ms
49,520 KB
testcase_15 AC 271 ms
49,932 KB
testcase_16 AC 270 ms
49,616 KB
testcase_17 AC 272 ms
49,860 KB
testcase_18 AC 280 ms
49,616 KB
testcase_19 AC 276 ms
49,468 KB
testcase_20 AC 270 ms
49,868 KB
testcase_21 AC 275 ms
49,644 KB
testcase_22 AC 273 ms
49,620 KB
testcase_23 AC 268 ms
49,572 KB
testcase_24 AC 279 ms
49,956 KB
testcase_25 AC 274 ms
49,904 KB
testcase_26 AC 275 ms
49,508 KB
testcase_27 AC 275 ms
49,564 KB
testcase_28 AC 268 ms
49,684 KB
testcase_29 AC 272 ms
49,696 KB
testcase_30 AC 267 ms
49,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

tailrec fun f(n: Int, s: String): String = if (n>0) f(n/7,(n%7).toString()+s) else s
fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    println(if (n==0) n else f(n,""))
}
0