結果

問題 No.182 新規性の虜
ユーザー ynyn
提出日時 2015-06-25 11:34:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 269 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,516 KB
最終ジャッジ日時 2024-07-07 17:32:42
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 62 ms
15,980 KB
testcase_09 AC 90 ms
19,732 KB
testcase_10 AC 82 ms
18,424 KB
testcase_11 AC 75 ms
17,148 KB
testcase_12 AC 45 ms
13,336 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 RE -
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,496 KB
testcase_18 AC 82 ms
17,844 KB
testcase_19 AC 64 ms
15,648 KB
testcase_20 AC 49 ms
13,440 KB
testcase_21 AC 89 ms
18,844 KB
testcase_22 AC 53 ms
14,388 KB
testcase_23 RE -
testcase_24 AC 79 ms
20,516 KB
testcase_25 AC 70 ms
12,484 KB
testcase_26 AC 33 ms
11,904 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 83 ms
21,672 KB
evil02.txt AC 83 ms
21,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.sort()

count = 1

if a[1] == a[0]:
        count -= 1
else :
    count += 1

for i in range(2,n):
    if a[i] == a[i-1]:
        if a[i] != a[i-2]:
            count -= 1
    else:
        count += 1

print(count)
0