結果

問題 No.182 新規性の虜
ユーザー tarotaro789tarotaro789
提出日時 2017-03-16 22:25:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 286 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,520 KB
最終ジャッジ日時 2024-07-04 02:48:20
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 77 ms
16,360 KB
testcase_09 AC 107 ms
19,884 KB
testcase_10 AC 105 ms
18,808 KB
testcase_11 AC 87 ms
17,156 KB
testcase_12 AC 54 ms
13,340 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 84 ms
17,848 KB
testcase_19 AC 69 ms
16,152 KB
testcase_20 AC 53 ms
13,440 KB
testcase_21 AC 90 ms
18,856 KB
testcase_22 AC 59 ms
14,524 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 104 ms
20,520 KB
testcase_25 AC 71 ms
12,632 KB
testcase_26 AC 36 ms
11,904 KB
testcase_27 WA -
evil01.txt AC 101 ms
21,500 KB
evil02.txt AC 103 ms
21,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ls=list(map(int,input().split()))
ls.sort()
cnt=0
if n==1:
    cnt+=1
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