結果

問題 No.341 沈黙の期間
ユーザー javyjavy
提出日時 2016-02-12 22:28:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 1,490 bytes
コンパイル時間 12,210 ms
コンパイル使用メモリ 435,796 KB
実行使用メモリ 49,924 KB
最終ジャッジ日時 2024-11-20 07:07:30
合計ジャッジ時間 17,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
49,784 KB
testcase_01 AC 289 ms
49,924 KB
testcase_02 AC 288 ms
49,732 KB
testcase_03 AC 291 ms
49,912 KB
testcase_04 AC 290 ms
49,764 KB
testcase_05 AC 290 ms
49,640 KB
testcase_06 AC 289 ms
49,696 KB
testcase_07 AC 295 ms
49,792 KB
testcase_08 AC 291 ms
49,816 KB
testcase_09 AC 290 ms
49,548 KB
testcase_10 AC 292 ms
49,760 KB
testcase_11 AC 286 ms
49,676 KB
testcase_12 AC 292 ms
49,696 KB
testcase_13 AC 288 ms
49,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

    fun readLineInt(): Int {
        val str = readLine() as String
        return str.toInt()
    }

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }

    fun readLineDouble() : Double {
        val str = readLine() as String
        return str.toDouble()
    }

    fun readLineString() : String {
        return readLine() as String
    }

    //    fun readLineStringArray(): List<String> {
    //        val str = readLine() as String
    //        val arrStr = str.split(" ")
    //        return arrStr
    //    }

    val str = readLineString()
    var count = 0
    var maxN = 0
    for (ch in str) {
        if (ch == '…') {
            count++
        } else {
            if (maxN < count)
                maxN = count
            count = 0
        }
    }
    if (maxN < count)
        maxN = count
    println(maxN)
}
0