結果

問題 No.182 新規性の虜
ユーザー nanaenanae
提出日時 2016-12-31 15:23:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 696 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,660 KB
最終ジャッジ日時 2024-06-08 09:39:10
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 87 ms
16,364 KB
testcase_09 AC 129 ms
19,816 KB
testcase_10 AC 117 ms
18,684 KB
testcase_11 AC 99 ms
17,160 KB
testcase_12 AC 58 ms
13,680 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 103 ms
17,864 KB
testcase_19 AC 79 ms
16,044 KB
testcase_20 AC 61 ms
13,804 KB
testcase_21 AC 112 ms
18,876 KB
testcase_22 AC 69 ms
14,544 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 113 ms
20,660 KB
testcase_25 AC 88 ms
12,504 KB
testcase_26 AC 42 ms
11,904 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 117 ms
21,636 KB
evil02.txt AC 117 ms
21,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

N = int(input())
A = sorted([int(i) for i in input().split()])

# 初期化
ans = 0
flag = 0
pre = 0

for i in range(N):
    x = A[i]
    
    if x != pre:
        if i == (N - 1): # 末尾だけ気を付ける
            if flag == 1: # ...,97,98,99 とかだと98,99の2つをカウントする必要がある
                ans += 2
            else: # ...,97,97,99 という場合は99の1つだけカウント
                ans += 1
        else:
            if flag == 1: # 1コ前の要素が1個だけだったらカウントする
                ans += 1
            else:
                flag = 1
    else:
        flag = 0
        
    pre = x

print(ans)
0