結果

問題 No.182 新規性の虜
ユーザー motor_radialmotor_radial
提出日時 2019-07-29 16:11:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,520 KB
最終ジャッジ日時 2024-07-02 15:23:41
合計ジャッジ時間 3,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 91 ms
16,104 KB
testcase_09 AC 130 ms
19,608 KB
testcase_10 AC 114 ms
18,680 KB
testcase_11 AC 99 ms
17,148 KB
testcase_12 AC 58 ms
13,176 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,368 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 91 ms
17,708 KB
testcase_19 AC 74 ms
15,908 KB
testcase_20 AC 56 ms
13,440 KB
testcase_21 AC 99 ms
18,716 KB
testcase_22 AC 63 ms
14,516 KB
testcase_23 AC 30 ms
10,496 KB
testcase_24 AC 117 ms
20,520 KB
testcase_25 AC 70 ms
12,484 KB
testcase_26 AC 42 ms
12,032 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 124 ms
21,368 KB
evil02.txt AC 118 ms
21,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
count=0
A.sort()
for i in range(N):
    if i!=0:
        if A[i]==A[i-1]:
            continue
    if i!=N-1:
        if A[i]==A[i+1]:
            continue
    count+=1
print(count)
0