結果
| 問題 |
No.647 明太子
|
| コンテスト | |
| ユーザー |
💕💖💞
|
| 提出日時 | 2018-02-15 22:02:27 |
| 言語 | Kotlin (2.1.0) |
| 結果 |
AC
|
| 実行時間 | 828 ms / 4,500 ms |
| コード長 | 763 bytes |
| コンパイル時間 | 12,691 ms |
| コンパイル使用メモリ | 443,364 KB |
| 実行使用メモリ | 91,100 KB |
| 最終ジャッジ日時 | 2024-11-20 13:44:29 |
| 合計ジャッジ時間 | 25,423 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 20 |
コンパイルメッセージ
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
^
ソースコード
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)
}
}
}
}
💕💖💞