結果

問題 No.182 新規性の虜
ユーザー mkanenobumkanenobu
提出日時 2018-03-24 19:42:55
言語 Nim
(2.0.2)
結果
TLE  
実行時間 -
コード長 184 bytes
コンパイル時間 3,168 ms
コンパイル使用メモリ 68,656 KB
実行使用メモリ 10,256 KB
最終ジャッジ日時 2023-09-12 17:45:51
合計ジャッジ時間 39,616 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,388 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2,002 ms
8,376 KB
testcase_09 TLE -
testcase_10 AC 4,011 ms
9,628 KB
testcase_11 AC 2,733 ms
8,360 KB
testcase_12 AC 493 ms
5,032 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,384 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 4,153 ms
9,736 KB
testcase_19 AC 2,114 ms
6,936 KB
testcase_20 AC 776 ms
5,432 KB
testcase_21 TLE -
testcase_22 AC 1,263 ms
6,196 KB
testcase_23 AC 1 ms
4,384 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

var
    n = readLine(stdin).parseInt
    a = readLine(stdin).split.map(parseInt)
    res = 0

for i in a:
    if a.count(i) == 1:
        res += 1

echo res
0