結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー apahieapahie
提出日時 2019-04-07 21:24:10
言語 Nim
(2.0.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 175 bytes
コンパイル時間 3,693 ms
コンパイル使用メモリ 70,144 KB
実行使用メモリ 12,648 KB
最終ジャッジ日時 2024-07-01 22:46:11
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 22 ms
12,528 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 18 ms
12,624 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 12 ms
8,320 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 16 ms
10,240 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 15 ms
8,448 KB
testcase_19 AC 13 ms
8,320 KB
testcase_20 AC 22 ms
12,648 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 8 ms
6,400 KB
testcase_23 AC 22 ms
12,540 KB
testcase_24 AC 23 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, tables

let
  n, l = stdin.readLine.split.map parseInt
  t = l.toCountTable
var ans =0
for k, v in t:
  if v == t.largest.val:
    ans = k
echo ans
0