結果

問題 No.182 新規性の虜
ユーザー kamomekamome
提出日時 2019-07-25 18:52:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,116 KB
最終ジャッジ日時 2024-07-02 06:16:00
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 78 ms
14,684 KB
testcase_09 AC 127 ms
17,116 KB
testcase_10 AC 107 ms
16,384 KB
testcase_11 AC 89 ms
15,316 KB
testcase_12 AC 53 ms
12,524 KB
testcase_13 AC 30 ms
10,368 KB
testcase_14 AC 29 ms
10,496 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 84 ms
15,092 KB
testcase_19 AC 67 ms
14,076 KB
testcase_20 AC 52 ms
12,160 KB
testcase_21 AC 96 ms
15,396 KB
testcase_22 AC 59 ms
12,884 KB
testcase_23 AC 29 ms
10,496 KB
testcase_24 AC 91 ms
16,900 KB
testcase_25 AC 52 ms
11,604 KB
testcase_26 AC 40 ms
11,520 KB
testcase_27 AC 30 ms
10,368 KB
evil01.txt AC 95 ms
18,264 KB
evil02.txt AC 90 ms
18,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
l=input().split()
if len(l)==1:
    print(1)
    exit(0)
_new=0
l.sort()
if l[0] != l[1]:
    _new=_new+1
for i in range(1,len(l)-1):
    if (l[i]!=l[i-1]) and (l[i] != l[i+1]):
        _new=_new+1
if l[-1] != l[-2]:
    _new=_new+1
    
print(_new)
0