結果

問題 No.182 新規性の虜
ユーザー kou_kkkkou_kkk
提出日時 2024-12-02 19:33:03
言語 Nim
(2.2.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 4,455 ms
コンパイル使用メモリ 70,168 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-12-02 19:33:10
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 17 ms
9,472 KB
testcase_09 AC 26 ms
11,648 KB
testcase_10 AC 23 ms
10,496 KB
testcase_11 AC 19 ms
9,472 KB
testcase_12 AC 9 ms
5,888 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 17 ms
10,496 KB
testcase_19 AC 13 ms
8,704 KB
testcase_20 AC 7 ms
5,504 KB
testcase_21 AC 18 ms
10,752 KB
testcase_22 AC 9 ms
6,528 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 26 ms
12,800 KB
testcase_25 AC 17 ms
12,464 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt AC 31 ms
14,572 KB
evil02.txt AC 30 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils, tables

let
  n, a = stdin.readLine.split.map parseInt
  cntT = a.toCountTable
var
  cnt = 0

for v in cntT.values:
  if v == 1:
    inc cnt

echo cnt
0