結果
問題 | No.342 一番ワロタww |
ユーザー | javy |
提出日時 | 2016-02-12 22:51:58 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,887 bytes |
コンパイル時間 | 13,324 ms |
コンパイル使用メモリ | 445,092 KB |
実行使用メモリ | 50,040 KB |
最終ジャッジ日時 | 2024-11-20 07:09:30 |
合計ジャッジ時間 | 18,583 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 292 ms
49,876 KB |
testcase_01 | AC | 293 ms
49,976 KB |
testcase_02 | AC | 300 ms
49,620 KB |
testcase_03 | AC | 289 ms
49,880 KB |
testcase_04 | AC | 293 ms
49,912 KB |
testcase_05 | AC | 294 ms
49,724 KB |
testcase_06 | AC | 296 ms
49,868 KB |
testcase_07 | AC | 292 ms
49,936 KB |
testcase_08 | AC | 293 ms
49,904 KB |
testcase_09 | AC | 294 ms
49,620 KB |
testcase_10 | AC | 288 ms
50,020 KB |
testcase_11 | AC | 290 ms
49,620 KB |
testcase_12 | AC | 294 ms
49,864 KB |
testcase_13 | AC | 297 ms
49,860 KB |
testcase_14 | AC | 294 ms
49,976 KB |
testcase_15 | AC | 300 ms
49,648 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 ^
ソースコード
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 && list[i].length != 0) { println(list[i]) } } }