結果

問題 No.182 新規性の虜
ユーザー kamomekamome
提出日時 2019-07-25 18:51:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 218 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,068 KB
最終ジャッジ日時 2024-07-02 06:15:57
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,496 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 37 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 85 ms
14,680 KB
testcase_09 AC 127 ms
17,068 KB
testcase_10 AC 104 ms
16,376 KB
testcase_11 AC 88 ms
15,040 KB
testcase_12 AC 53 ms
12,276 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,496 KB
testcase_15 RE -
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 85 ms
15,328 KB
testcase_19 AC 68 ms
13,952 KB
testcase_20 AC 52 ms
12,160 KB
testcase_21 AC 96 ms
15,508 KB
testcase_22 AC 59 ms
12,868 KB
testcase_23 RE -
testcase_24 AC 91 ms
16,892 KB
testcase_25 AC 52 ms
11,584 KB
testcase_26 AC 39 ms
11,520 KB
testcase_27 AC 29 ms
10,496 KB
evil01.txt AC 93 ms
18,244 KB
evil02.txt AC 88 ms
18,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
l=input().split()
_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