結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kaiyori_labkaiyori_lab
提出日時 2014-11-29 23:46:55
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,539 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 10,467 ms
コンパイル使用メモリ 264,656 KB
実行使用メモリ 79,836 KB
最終ジャッジ日時 2024-06-28 21:59:10
合計ジャッジ時間 43,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,136 ms
66,220 KB
testcase_01 AC 1,456 ms
79,168 KB
testcase_02 AC 952 ms
65,440 KB
testcase_03 AC 976 ms
65,272 KB
testcase_04 AC 971 ms
65,620 KB
testcase_05 AC 1,487 ms
79,836 KB
testcase_06 AC 966 ms
65,452 KB
testcase_07 AC 968 ms
65,336 KB
testcase_08 AC 973 ms
65,820 KB
testcase_09 AC 985 ms
65,856 KB
testcase_10 AC 973 ms
65,472 KB
testcase_11 AC 984 ms
65,488 KB
testcase_12 AC 1,048 ms
65,872 KB
testcase_13 AC 1,038 ms
65,392 KB
testcase_14 AC 1,374 ms
79,312 KB
testcase_15 AC 1,331 ms
77,360 KB
testcase_16 AC 1,446 ms
78,408 KB
testcase_17 AC 1,324 ms
77,180 KB
testcase_18 AC 1,484 ms
78,232 KB
testcase_19 AC 1,426 ms
78,924 KB
testcase_20 AC 1,539 ms
78,828 KB
testcase_21 AC 1,114 ms
65,932 KB
testcase_22 AC 1,377 ms
78,556 KB
testcase_23 AC 1,504 ms
79,076 KB
testcase_24 AC 1,496 ms
79,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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