結果

問題 No.182 新規性の虜
ユーザー rocoderrocoder
提出日時 2017-07-29 12:36:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,652 KB
最終ジャッジ日時 2024-06-08 11:38:21
合計ジャッジ時間 2,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 74 ms
16,112 KB
testcase_09 AC 110 ms
20,016 KB
testcase_10 AC 107 ms
18,812 KB
testcase_11 AC 85 ms
17,284 KB
testcase_12 AC 54 ms
13,336 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 87 ms
17,976 KB
testcase_19 AC 66 ms
15,896 KB
testcase_20 AC 54 ms
13,440 KB
testcase_21 AC 96 ms
18,864 KB
testcase_22 AC 61 ms
14,656 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 103 ms
20,652 KB
testcase_25 AC 70 ms
12,504 KB
testcase_26 AC 37 ms
11,904 KB
testcase_27 AC 25 ms
10,624 KB
evil01.txt AC 115 ms
21,632 KB
evil02.txt AC 105 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#new
N=int(input())
if N==1:
    C=1
else:
    A=[int(i)for i in input().split()]
    A.sort()
    C=0
    if A[0]!=A[1]:
        C+=1
  #  print (C)
    for i in range(1,N-1):
        if A[i]!=A[i-1] and A[i]!=A[i+1]:
            C+=1
   #     print (A[i-1])
    #    print (A[i])
    if A[N-2]!=A[N-1]:
        C+=1
print(C)
0