結果

問題 No.182 新規性の虜
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-10 09:38:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,736 KB
最終ジャッジ日時 2024-07-02 00:56:00
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 11 ms
6,400 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,400 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 70 ms
10,636 KB
testcase_09 AC 109 ms
13,468 KB
testcase_10 AC 95 ms
12,204 KB
testcase_11 AC 80 ms
11,244 KB
testcase_12 AC 37 ms
8,424 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 11 ms
6,144 KB
testcase_15 AC 12 ms
6,272 KB
testcase_16 AC 11 ms
6,272 KB
testcase_17 AC 11 ms
6,144 KB
testcase_18 AC 90 ms
12,528 KB
testcase_19 AC 68 ms
10,712 KB
testcase_20 AC 44 ms
8,960 KB
testcase_21 AC 101 ms
13,368 KB
testcase_22 AC 53 ms
9,660 KB
testcase_23 AC 11 ms
6,144 KB
testcase_24 AC 86 ms
14,736 KB
testcase_25 AC 71 ms
10,108 KB
testcase_26 AC 22 ms
7,296 KB
testcase_27 AC 11 ms
6,272 KB
evil01.txt AC 88 ms
14,864 KB
evil02.txt AC 88 ms
14,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = map(int, raw_input().split())
A.sort()
cnt = 0
flag = False
tmp = -1
for i in range(0, N):
	if flag:
		if A[i] != tmp:
			cnt += 1
		else:
			flag = False
	else:
		if A[i] != tmp:
			flag = True
	tmp = A[i]
if flag:
	cnt += 1
print cnt
0