結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kaiyori_labkaiyori_lab
提出日時 2014-11-29 23:40:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,363 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 8,880 ms
コンパイル使用メモリ 262,440 KB
実行使用メモリ 83,508 KB
最終ジャッジ日時 2024-06-28 21:59:53
合計ジャッジ時間 36,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 991 ms
66,588 KB
testcase_01 AC 1,345 ms
83,508 KB
testcase_02 AC 848 ms
65,964 KB
testcase_03 AC 834 ms
65,992 KB
testcase_04 AC 825 ms
66,156 KB
testcase_05 AC 1,313 ms
82,136 KB
testcase_06 AC 821 ms
65,740 KB
testcase_07 AC 841 ms
65,660 KB
testcase_08 AC 838 ms
65,708 KB
testcase_09 AC 832 ms
66,052 KB
testcase_10 AC 829 ms
65,528 KB
testcase_11 AC 841 ms
65,924 KB
testcase_12 AC 859 ms
66,092 KB
testcase_13 AC 855 ms
66,168 KB
testcase_14 AC 1,247 ms
81,152 KB
testcase_15 AC 1,196 ms
77,184 KB
testcase_16 AC 1,312 ms
80,992 KB
testcase_17 AC 1,142 ms
75,904 KB
testcase_18 AC 1,308 ms
80,880 KB
testcase_19 AC 1,246 ms
81,120 KB
testcase_20 AC 1,355 ms
83,196 KB
testcase_21 AC 951 ms
66,376 KB
testcase_22 AC 1,204 ms
78,948 KB
testcase_23 AC 1,322 ms
83,040 KB
testcase_24 AC 1,363 ms
82,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App{
  val sc = new java.util.Scanner(System.in)
  val N = sc.nextInt
  val arr = List.fill(N)(sc.nextInt).groupBy(e => e).values.toList
    .sortWith{(a, b) => if(a.length == b.length) a(0) > b(0) else (a.length > b.length)}
  println(arr(0)(0))
}
0