結果

問題 No.182 新規性の虜
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-03 16:09:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,540 KB
最終ジャッジ日時 2024-12-27 02:09:10
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 35 ms
10,368 KB
testcase_03 AC 34 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 35 ms
10,624 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 92 ms
16,260 KB
testcase_09 AC 126 ms
19,496 KB
testcase_10 AC 108 ms
18,444 KB
testcase_11 AC 113 ms
16,912 KB
testcase_12 AC 59 ms
13,612 KB
testcase_13 AC 33 ms
10,368 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,368 KB
testcase_18 AC 88 ms
17,648 KB
testcase_19 AC 75 ms
15,444 KB
testcase_20 AC 59 ms
13,504 KB
testcase_21 AC 109 ms
18,488 KB
testcase_22 AC 65 ms
14,376 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 109 ms
20,540 KB
testcase_25 AC 75 ms
12,828 KB
testcase_26 AC 43 ms
11,776 KB
testcase_27 AC 34 ms
10,496 KB
evil01.txt AC 110 ms
21,564 KB
evil02.txt AC 108 ms
21,440 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