結果

問題 No.182 新規性の虜
ユーザー nanaenanae
提出日時 2016-12-31 15:23:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 696 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,280 KB
最終ジャッジ日時 2024-12-27 11:37:41
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 83 ms
16,112 KB
testcase_09 AC 113 ms
19,884 KB
testcase_10 AC 112 ms
18,680 KB
testcase_11 AC 92 ms
17,028 KB
testcase_12 AC 54 ms
13,472 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 31 ms
10,496 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 94 ms
17,736 KB
testcase_19 AC 75 ms
16,044 KB
testcase_20 AC 59 ms
13,676 KB
testcase_21 AC 120 ms
18,872 KB
testcase_22 AC 74 ms
14,548 KB
testcase_23 AC 34 ms
10,496 KB
testcase_24 AC 120 ms
20,280 KB
testcase_25 AC 94 ms
12,376 KB
testcase_26 AC 48 ms
11,904 KB
testcase_27 AC 33 ms
10,496 KB
evil01.txt AC 130 ms
21,380 KB
evil02.txt AC 119 ms
21,380 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