結果
問題 | No.29 パワーアップ |
ユーザー | バカらっく |
提出日時 | 2019-09-06 08:22:34 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 15,209 ms |
コンパイル使用メモリ | 446,672 KB |
実行使用メモリ | 94,972 KB |
最終ジャッジ日時 | 2024-06-23 13:11:59 |
合計ジャッジ時間 | 24,550 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 320 ms
60,412 KB |
testcase_01 | AC | 315 ms
94,948 KB |
testcase_02 | AC | 315 ms
57,076 KB |
testcase_03 | AC | 326 ms
56,952 KB |
testcase_04 | AC | 314 ms
57,052 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
import java.util.* fun main(args: Array<String>) { val count = readLine()!!.toInt() var items = mutableListOf<Int>() (1..count).forEach { items.addAll(readLine()!!.split(" ").map { it.toInt() }) } var ans = 0 while (items.size >= 2) { items.sortWith(kotlin.Comparator { a, b -> comp(a,b,items) }) val (a,b) = items.take(2) if(a == b) { ans++ (0..1).forEach { items.removeAt(0) } } else if(items.size >= 4) { ans = ans + items.size / 4 break } } println(ans) } fun comp(a:Int, b:Int, list : List<Int>):Int { val num1 = list.count { it == a } val num2 = list.count { it == b } if(num1 == num2) { return a.compareTo(b) } return num2.compareTo(num1) }