結果

問題 No.182 新規性の虜
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-03 16:09:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,544 KB
最終ジャッジ日時 2024-06-08 05:49:06
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 68 ms
16,260 KB
testcase_09 AC 98 ms
19,624 KB
testcase_10 AC 91 ms
18,708 KB
testcase_11 AC 78 ms
17,036 KB
testcase_12 AC 47 ms
13,616 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,496 KB
testcase_17 AC 24 ms
10,624 KB
testcase_18 AC 74 ms
17,772 KB
testcase_19 AC 58 ms
15,704 KB
testcase_20 AC 46 ms
13,756 KB
testcase_21 AC 81 ms
18,356 KB
testcase_22 AC 52 ms
14,636 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 89 ms
20,544 KB
testcase_25 AC 58 ms
12,832 KB
testcase_26 AC 33 ms
11,904 KB
testcase_27 AC 23 ms
10,624 KB
evil01.txt AC 96 ms
21,700 KB
evil02.txt AC 91 ms
21,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: UTF-8

import sys
import re
import itertools
from math import log
from collections import deque

### defs ###


### main ###
N = int(sys.stdin.readline())
A = list(map(int, sys.stdin.readline().split()))

A = sorted(A)
A = [0] + A + [0]
ans=0
for i in range(1,N+1):
	if (A[i-1]!=A[i] and A[i]!=A[i+1]):
		ans+=1

print(ans)
0