結果

問題 No.1070 Missing a space
ユーザー face4face4
提出日時 2021-04-09 00:35:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 1,000 ms
コード長 186 bytes
コンパイル時間 13,646 ms
コンパイル使用メモリ 425,680 KB
実行使用メモリ 56,880 KB
最終ジャッジ日時 2024-06-24 03:32:54
合計ジャッジ時間 14,737 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
56,840 KB
testcase_01 AC 301 ms
56,880 KB
testcase_02 AC 303 ms
56,676 KB
testcase_03 AC 289 ms
54,148 KB
testcase_04 AC 306 ms
56,836 KB
testcase_05 AC 303 ms
56,776 KB
testcase_06 AC 303 ms
56,756 KB
testcase_07 AC 305 ms
56,720 KB
testcase_08 AC 306 ms
56,748 KB
testcase_09 AC 305 ms
56,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    println(readLine()!!.let{
        when(it.length){
            2 -> 1
            else -> it.length - 1 - it.substring(1..it.length-1).count({it=='0'})
        }
    })
}
0