結果

問題 No.647 明太子
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-15 22:02:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 894 ms / 4,500 ms
コード長 763 bytes
コンパイル時間 14,686 ms
コンパイル使用メモリ 444,276 KB
実行使用メモリ 90,852 KB
最終ジャッジ日時 2024-04-30 16:52:10
合計ジャッジ時間 28,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
57,024 KB
testcase_01 AC 346 ms
57,008 KB
testcase_02 AC 340 ms
57,084 KB
testcase_03 AC 353 ms
57,056 KB
testcase_04 AC 358 ms
57,224 KB
testcase_05 AC 360 ms
57,032 KB
testcase_06 AC 359 ms
57,040 KB
testcase_07 AC 377 ms
57,124 KB
testcase_08 AC 367 ms
56,960 KB
testcase_09 AC 474 ms
59,516 KB
testcase_10 AC 483 ms
61,560 KB
testcase_11 AC 409 ms
57,256 KB
testcase_12 AC 499 ms
59,616 KB
testcase_13 AC 526 ms
62,808 KB
testcase_14 AC 824 ms
83,584 KB
testcase_15 AC 569 ms
64,952 KB
testcase_16 AC 481 ms
59,508 KB
testcase_17 AC 840 ms
89,892 KB
testcase_18 AC 849 ms
90,852 KB
testcase_19 AC 710 ms
76,016 KB
testcase_20 AC 708 ms
76,496 KB
testcase_21 AC 593 ms
66,716 KB
testcase_22 AC 894 ms
90,672 KB
testcase_23 AC 408 ms
57,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) { 
         ^
Main.kt:22:38: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Int, Int>
  val max = pairs.maxBy { it.second }!!.second
                                     ^

ソースコード

diff #

fun main(args:Array<String>) { 
  val persons = (1..readLine()!!.toInt()).map { 
    val p = readLine()!!.split(" ").map{ it.toInt() }
    Pair(p[0], p[1])
  }
  val mentais = (1..readLine()!!.toInt()).map { 
    val p = readLine()!!.split(" ").map{ it.toInt() }
    Pair(p[0], p[1])
  }

  // first 値段
  // second からさ
  val pairs = mentais.mapIndexed { i,mentai ->
    val score = persons.map { person ->
      when {
        mentai.first <= person.first && person.second <= mentai.second -> 1
        else -> 0
      }
    }.sum()
    Pair(i+1, score)
  }
  val max = pairs.maxBy { it.second }!!.second

  when { 
    max == 0 -> { println(0) }
    else -> {
      pairs.filter { it.second == max }.map { 
        println(it.first)
      }
    }
  }
}
0