結果

問題 No.706 多眼生物の調査
ユーザー 💕💖💞💕💖💞
提出日時 2018-07-22 00:34:56
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 13,391 ms
コンパイル使用メモリ 431,980 KB
実行使用メモリ 74,868 KB
最終ジャッジ日時 2024-11-20 16:32:32
合計ジャッジ時間 16,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
51,676 KB
testcase_01 AC 328 ms
51,976 KB
testcase_02 AC 326 ms
51,896 KB
testcase_03 AC 362 ms
52,492 KB
testcase_04 AC 398 ms
53,316 KB
testcase_05 AC 527 ms
60,680 KB
testcase_06 WA -
testcase_07 AC 329 ms
52,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:2:163: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Int, Int>
  val dd = (1..readLine()!!.toInt()).map { readLine()!!.toList().filter { it == '^' }.size }.groupBy { it }.map { (k,vs) -> Pair(k, vs.size) }.maxBy { it.second }!!.first
                                                                                                                                                                  ^

ソースコード

diff #

fun main(args:Array<String>) {
  val dd = (1..readLine()!!.toInt()).map { readLine()!!.toList().filter { it == '^' }.size }.groupBy { it }.map { (k,vs) -> Pair(k, vs.size) }.maxBy { it.second }!!.first
  println(dd)
}
0