結果

問題 No.342 一番ワロタww
ユーザー javyjavy
提出日時 2016-02-12 22:49:55
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,863 bytes
コンパイル時間 13,612 ms
コンパイル使用メモリ 443,004 KB
実行使用メモリ 49,984 KB
最終ジャッジ日時 2024-11-20 07:07:55
合計ジャッジ時間 18,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
49,872 KB
testcase_01 AC 294 ms
49,804 KB
testcase_02 AC 293 ms
49,748 KB
testcase_03 AC 295 ms
49,732 KB
testcase_04 WA -
testcase_05 AC 300 ms
49,984 KB
testcase_06 AC 296 ms
49,776 KB
testcase_07 AC 302 ms
49,876 KB
testcase_08 AC 298 ms
49,760 KB
testcase_09 AC 301 ms
49,872 KB
testcase_10 AC 299 ms
49,628 KB
testcase_11 AC 295 ms
49,552 KB
testcase_12 AC 296 ms
49,708 KB
testcase_13 AC 291 ms
49,728 KB
testcase_14 AC 292 ms
49,584 KB
testcase_15 AC 299 ms
49,768 KB
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:53:17: warning: variable 'count' initializer is redundant
    var count = 0
                ^

ソースコード

diff #

import java.util.regex.Matcher
import java.util.regex.Pattern

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 index = 0
    var count = 0
    var maxN = 0
    val p : Pattern = Pattern.compile("w+")
    val m : Matcher = p.matcher(str)
    var list = arrayListOf<String>()
    var lenList = arrayListOf<Int>()
    while (m.find()) {
//        println(m.group())
        count = m.group().length
        if (maxN <= count) {
            list.add(str.substring(index,m.start()))
            lenList.add(count)
            maxN = count
        }
        index = m.end()
    }
    for ((i,item) in lenList.withIndex()) {
        if (item == maxN) {
            println(list[i])
        }
    }
}
0