結果

問題 No.182 新規性の虜
ユーザー Haruki KitagawaHaruki Kitagawa
提出日時 2019-06-17 18:13:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 656 ms / 5,000 ms
コード長 287 bytes
コンパイル時間 13,048 ms
コンパイル使用メモリ 432,344 KB
実行使用メモリ 99,568 KB
最終ジャッジ日時 2024-11-20 18:55:31
合計ジャッジ時間 26,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
56,968 KB
testcase_01 AC 318 ms
56,992 KB
testcase_02 AC 328 ms
57,072 KB
testcase_03 AC 323 ms
57,052 KB
testcase_04 AC 321 ms
57,068 KB
testcase_05 AC 322 ms
56,960 KB
testcase_06 AC 325 ms
56,992 KB
testcase_07 AC 325 ms
57,104 KB
testcase_08 AC 586 ms
76,060 KB
testcase_09 AC 635 ms
84,348 KB
testcase_10 AC 629 ms
82,292 KB
testcase_11 AC 656 ms
78,280 KB
testcase_12 AC 557 ms
67,820 KB
testcase_13 AC 327 ms
56,952 KB
testcase_14 AC 326 ms
57,016 KB
testcase_15 AC 322 ms
57,060 KB
testcase_16 AC 322 ms
57,068 KB
testcase_17 AC 322 ms
57,000 KB
testcase_18 AC 617 ms
72,076 KB
testcase_19 AC 553 ms
67,816 KB
testcase_20 AC 535 ms
65,632 KB
testcase_21 AC 573 ms
74,196 KB
testcase_22 AC 541 ms
65,760 KB
testcase_23 AC 328 ms
57,088 KB
testcase_24 AC 625 ms
99,568 KB
testcase_25 AC 540 ms
67,932 KB
testcase_26 AC 507 ms
63,788 KB
testcase_27 AC 320 ms
56,952 KB
evil01.txt AC 656 ms
97,348 KB
evil02.txt AC 678 ms
97,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>){
    val n = readLine()!!.toInt()
    val aList = readLine()!!.split(" ").map{ it.toLong() }
    val map = mutableMapOf<Long, Int>().withDefault{ 0 }
    for (a in aList){
        map[a] = (map[a]?:0) + 1
    }
    println(map.filter{ it.value == 1}.size)
}
0