結果

問題 No.1908 Assault for Keys
ユーザー 箱星箱星
提出日時 2022-04-22 21:11:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 17,070 ms
コンパイル使用メモリ 443,184 KB
実行使用メモリ 79,452 KB
最終ジャッジ日時 2024-06-24 02:09:27
合計ジャッジ時間 23,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
59,076 KB
testcase_01 AC 312 ms
59,032 KB
testcase_02 AC 492 ms
79,272 KB
testcase_03 AC 496 ms
79,288 KB
testcase_04 AC 495 ms
79,092 KB
testcase_05 AC 493 ms
79,224 KB
testcase_06 AC 498 ms
79,452 KB
testcase_07 AC 493 ms
79,236 KB
testcase_08 AC 481 ms
79,392 KB
testcase_09 AC 490 ms
79,372 KB
testcase_10 AC 489 ms
79,304 KB
testcase_11 AC 494 ms
79,256 KB
testcase_12 AC 498 ms
79,088 KB
testcase_13 AC 500 ms
79,388 KB
testcase_14 AC 498 ms
79,284 KB
testcase_15 AC 489 ms
79,272 KB
testcase_16 AC 315 ms
59,056 KB
testcase_17 AC 326 ms
59,040 KB
testcase_18 AC 497 ms
79,280 KB
testcase_19 AC 488 ms
79,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val h = nextInt()
    val w = nextInt()
    val s = Array(h) { nextLine().toCharArray() }
    val x = (0 until w).map { j -> (0 until h).map { i -> s[i][j] }.count { it == 'x' }}.maxOrNull()!!
    println(x + 1)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0