結果

問題 No.182 新規性の虜
ユーザー yuruhiyayuruhiya
提出日時 2019-02-28 21:32:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 294 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,652 KB
最終ジャッジ日時 2024-06-23 11:50:40
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 98 ms
16,496 KB
testcase_09 AC 143 ms
20,484 KB
testcase_10 AC 129 ms
19,172 KB
testcase_11 AC 110 ms
17,284 KB
testcase_12 AC 62 ms
13,468 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 RE -
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 107 ms
17,976 KB
testcase_19 AC 86 ms
16,160 KB
testcase_20 AC 62 ms
13,696 KB
testcase_21 AC 120 ms
18,988 KB
testcase_22 AC 72 ms
14,528 KB
testcase_23 RE -
testcase_24 AC 132 ms
20,652 KB
testcase_25 AC 92 ms
12,756 KB
testcase_26 AC 43 ms
12,160 KB
testcase_27 AC 30 ms
10,752 KB
evil01.txt AC 138 ms
21,636 KB
evil02.txt AC 138 ms
21,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[int(i) for i in input().split()]
a.sort()
ans=0
for i in range(len(a)):
    if i==0:
        if a[i]!=a[i+1]:
            ans+=1
    elif i==len(a)-1:
        if a[i]!=a[i-1]:
            ans+=1
    else:
        if a[i]!=a[i-1] and a[i]!=a[i+1]:
            ans+=1
print(ans)
0