結果

問題 No.341 沈黙の期間
ユーザー javyjavy
提出日時 2016-02-12 22:24:20
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,447 bytes
コンパイル時間 13,024 ms
コンパイル使用メモリ 435,532 KB
実行使用メモリ 49,836 KB
最終ジャッジ日時 2024-11-20 07:06:47
合計ジャッジ時間 18,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
49,692 KB
testcase_01 AC 298 ms
49,708 KB
testcase_02 WA -
testcase_03 AC 299 ms
49,656 KB
testcase_04 AC 295 ms
49,636 KB
testcase_05 AC 298 ms
49,632 KB
testcase_06 AC 298 ms
49,528 KB
testcase_07 AC 298 ms
49,580 KB
testcase_08 AC 300 ms
49,608 KB
testcase_09 AC 306 ms
49,524 KB
testcase_10 AC 313 ms
49,684 KB
testcase_11 AC 302 ms
49,836 KB
testcase_12 WA -
testcase_13 AC 301 ms
49,704 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
        }
    }
    println(maxN)
}
0