結果

問題 No.182 新規性の虜
ユーザー Tomoki_ImaiTomoki_Imai
提出日時 2015-04-17 03:01:41
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,250 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 12,553 ms
コンパイル使用メモリ 275,544 KB
実行使用メモリ 79,344 KB
最終ジャッジ日時 2024-05-09 09:34:54
合計ジャッジ時間 43,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 864 ms
65,144 KB
testcase_01 AC 863 ms
65,112 KB
testcase_02 AC 843 ms
65,020 KB
testcase_03 AC 865 ms
65,060 KB
testcase_04 AC 856 ms
64,944 KB
testcase_05 AC 851 ms
65,176 KB
testcase_06 AC 854 ms
65,252 KB
testcase_07 AC 846 ms
65,212 KB
testcase_08 AC 1,206 ms
70,020 KB
testcase_09 AC 1,245 ms
79,344 KB
testcase_10 AC 1,210 ms
76,060 KB
testcase_11 AC 1,250 ms
70,864 KB
testcase_12 AC 1,178 ms
67,620 KB
testcase_13 AC 855 ms
65,284 KB
testcase_14 AC 878 ms
64,928 KB
testcase_15 AC 869 ms
65,012 KB
testcase_16 AC 883 ms
65,112 KB
testcase_17 AC 861 ms
65,064 KB
testcase_18 AC 1,171 ms
69,580 KB
testcase_19 AC 1,149 ms
67,592 KB
testcase_20 AC 1,151 ms
65,268 KB
testcase_21 AC 1,186 ms
70,028 KB
testcase_22 AC 1,147 ms
67,760 KB
testcase_23 AC 849 ms
65,036 KB
testcase_24 AC 1,054 ms
79,052 KB
testcase_25 AC 1,040 ms
69,932 KB
testcase_26 AC 1,031 ms
65,616 KB
testcase_27 AC 845 ms
65,016 KB
evil01.txt AC 1,091 ms
79,248 KB
evil02.txt AC 1,109 ms
79,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn.readLine

object Main {
  def main(args:Array[String]) = {
    val n = readLine().toInt
    val a = readLine().split(" ").map(_.toInt).sorted
    val m = mutable.Map.empty[Int,Int]
    a.foreach((k) =>  m += k -> (1 + m.getOrElse(k,0)))
    val ans = a.count((k) => m(k) == 1)
    println(ans)
  }
}
0