結果

問題 No.182 新規性の虜
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-03 16:01:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,672 KB
最終ジャッジ日時 2024-09-24 13:46:11
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 75 ms
16,388 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 28 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 100 ms
20,672 KB
testcase_25 AC 70 ms
13,048 KB
testcase_26 AC 39 ms
11,904 KB
testcase_27 AC 29 ms
10,880 KB
evil01.txt AC 103 ms
21,828 KB
evil02.txt AC 101 ms
21,788 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()))

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