結果

問題 No.182 新規性の虜
ユーザー tarotaro789tarotaro789
提出日時 2017-03-16 22:24:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,588 KB
最終ジャッジ日時 2024-07-04 02:44:51
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 84 ms
16,164 KB
testcase_09 AC 123 ms
20,476 KB
testcase_10 AC 103 ms
19,300 KB
testcase_11 AC 95 ms
17,024 KB
testcase_12 AC 55 ms
13,312 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 WA -
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 92 ms
17,840 KB
testcase_19 AC 72 ms
15,908 KB
testcase_20 AC 55 ms
13,568 KB
testcase_21 AC 105 ms
18,852 KB
testcase_22 AC 63 ms
14,516 KB
testcase_23 WA -
testcase_24 AC 105 ms
20,588 KB
testcase_25 AC 76 ms
12,492 KB
testcase_26 AC 41 ms
11,904 KB
testcase_27 WA -
evil01.txt AC 116 ms
21,500 KB
evil02.txt AC 110 ms
21,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ls=list(map(int,input().split()))
ls.sort()
cnt=0
for i in range(n-2):
    if i==0:
        if ls[i]!=ls[i+1]:
            cnt+=1
    if i==n-3:
        if ls[i+1]!=ls[i+2]:
            cnt+=1
    if ls[i]!=ls[i+1]!=ls[i+2]:
        cnt+=1
print(cnt)
0