結果

問題 No.164 ちっちゃくないよ!!
ユーザー バカらっくバカらっく
提出日時 2019-11-26 03:18:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 14,318 ms
コンパイル使用メモリ 440,896 KB
実行使用メモリ 52,580 KB
最終ジャッジ日時 2024-10-15 14:36:25
合計ジャッジ時間 19,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
51,828 KB
testcase_01 AC 321 ms
51,644 KB
testcase_02 AC 321 ms
51,916 KB
testcase_03 AC 317 ms
51,744 KB
testcase_04 AC 323 ms
51,960 KB
testcase_05 AC 364 ms
52,220 KB
testcase_06 AC 369 ms
52,468 KB
testcase_07 AC 360 ms
52,344 KB
testcase_08 AC 363 ms
52,404 KB
testcase_09 AC 364 ms
52,580 KB
testcase_10 AC 329 ms
51,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:4:67: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val ans = (1..inputCount).map { getValue(readLine()!!) }.min()!!
                                                                  ^
Main.kt:9:34: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Char
    val max = charToInt(num.max()!!) + 1L
                                 ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val inputCount = readLine()!!.toInt()
    val ans = (1..inputCount).map { getValue(readLine()!!) }.min()!!
    println(ans)
}

fun getValue(num:String):Long {
    val max = charToInt(num.max()!!) + 1L
    var base = 1L
    var total = 0L
    for(c in num.reversed()) {
        total += base * charToInt(c)
        base *= max
    }
    return total
}

fun charToInt(c:Char):Int {
    if(c <= '9') {
        return c.toString().toInt();
    }
    return (c - 'A') + 10;
}
0