結果

問題 No.182 新規性の虜
ユーザー Tomoki_ImaiTomoki_Imai
提出日時 2015-04-17 03:01:41
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,408 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 13,921 ms
コンパイル使用メモリ 273,260 KB
実行使用メモリ 78,248 KB
最終ジャッジ日時 2024-12-15 21:18:53
合計ジャッジ時間 50,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 951 ms
63,096 KB
testcase_01 AC 946 ms
63,460 KB
testcase_02 AC 949 ms
63,296 KB
testcase_03 AC 951 ms
63,244 KB
testcase_04 AC 950 ms
63,044 KB
testcase_05 AC 949 ms
63,308 KB
testcase_06 AC 950 ms
63,012 KB
testcase_07 AC 951 ms
63,144 KB
testcase_08 AC 1,350 ms
69,816 KB
testcase_09 AC 1,408 ms
77,468 KB
testcase_10 AC 1,369 ms
74,088 KB
testcase_11 AC 1,401 ms
70,480 KB
testcase_12 AC 1,278 ms
65,588 KB
testcase_13 AC 969 ms
63,000 KB
testcase_14 AC 950 ms
63,120 KB
testcase_15 AC 951 ms
63,108 KB
testcase_16 AC 948 ms
63,300 KB
testcase_17 AC 935 ms
63,104 KB
testcase_18 AC 1,229 ms
68,888 KB
testcase_19 AC 1,239 ms
66,816 KB
testcase_20 AC 1,275 ms
65,420 KB
testcase_21 AC 1,326 ms
69,968 KB
testcase_22 AC 1,269 ms
66,308 KB
testcase_23 AC 935 ms
63,232 KB
testcase_24 AC 1,201 ms
78,248 KB
testcase_25 AC 1,147 ms
69,980 KB
testcase_26 AC 1,154 ms
63,876 KB
testcase_27 AC 966 ms
63,196 KB
evil01.txt AC 1,237 ms
78,504 KB
evil02.txt AC 1,243 ms
78,536 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