結果

問題 No.182 新規性の虜
ユーザー rocoderrocoder
提出日時 2017-07-29 12:36:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,388 KB
最終ジャッジ日時 2024-12-27 17:31:39
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 34 ms
10,496 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 90 ms
16,240 KB
testcase_09 AC 131 ms
19,756 KB
testcase_10 AC 111 ms
18,680 KB
testcase_11 AC 98 ms
17,036 KB
testcase_12 AC 59 ms
13,340 KB
testcase_13 AC 32 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 92 ms
17,724 KB
testcase_19 AC 79 ms
15,768 KB
testcase_20 AC 65 ms
13,284 KB
testcase_21 AC 111 ms
18,748 KB
testcase_22 AC 71 ms
14,400 KB
testcase_23 AC 33 ms
10,496 KB
testcase_24 AC 118 ms
20,388 KB
testcase_25 AC 77 ms
12,500 KB
testcase_26 AC 42 ms
11,776 KB
testcase_27 AC 29 ms
10,496 KB
evil01.txt AC 115 ms
21,380 KB
evil02.txt AC 120 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