結果

問題 No.164 ちっちゃくないよ!!
ユーザー バカらっくバカらっく
提出日時 2021-11-10 14:35:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 14,812 ms
コンパイル使用メモリ 452,512 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-11-21 01:27:20
合計ジャッジ時間 20,016 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
52,032 KB
testcase_01 AC 329 ms
51,844 KB
testcase_02 AC 330 ms
51,892 KB
testcase_03 AC 322 ms
51,832 KB
testcase_04 AC 323 ms
51,968 KB
testcase_05 AC 418 ms
54,596 KB
testcase_06 AC 417 ms
54,524 KB
testcase_07 AC 372 ms
52,416 KB
testcase_08 AC 371 ms
52,464 KB
testcase_09 AC 371 ms
52,660 KB
testcase_10 AC 334 ms
52,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:10:16: warning: variable 'base' initializer is redundant
    var base = 10
               ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val ans = (1..n).map { convDec(readLine()!!) }.minOrNull()!!
    println(ans)
}

fun convDec(n:String):Long {
    val alpha = n.filter { it in 'A'..'Z' }
    var base = 10
    if(alpha.isEmpty()) {
        base = n.map { it.toString().toInt() }.maxOrNull()!! + 1
    } else {
        base = alpha.maxOrNull()!! - 'A' + 11
    }
    var mul = 1L
    var ans = 0L
    for(i in n.reversed()) {
        if(i in '0'..'9') {
            ans += (i-'0')*mul
        } else {
            ans += (i-'A'+10)*mul
        }
        mul*=base
    }
    return ans
}
0