結果

問題 No.182 新規性の虜
ユーザー y_nakamura_CC2y_nakamura_CC2
提出日時 2018-01-17 01:40:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,592 KB
最終ジャッジ日時 2024-06-06 13:25:11
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 73 ms
16,160 KB
testcase_09 AC 107 ms
19,868 KB
testcase_10 AC 105 ms
18,568 KB
testcase_11 AC 91 ms
17,216 KB
testcase_12 AC 51 ms
13,308 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 82 ms
17,844 KB
testcase_19 AC 63 ms
15,796 KB
testcase_20 AC 49 ms
13,824 KB
testcase_21 AC 88 ms
18,860 KB
testcase_22 AC 58 ms
14,520 KB
testcase_23 WA -
testcase_24 AC 93 ms
20,592 KB
testcase_25 AC 70 ms
12,488 KB
testcase_26 AC 35 ms
11,776 KB
testcase_27 AC 25 ms
10,624 KB
evil01.txt AC 94 ms
21,504 KB
evil02.txt AC 95 ms
21,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
isOnly = True

for i in range(N-1):

    if A[i] == A[i+1]:
        isOnly = False

    elif isOnly:
        ans += 1
        if i == N-2:
            ans+=1
    else:
        isOnly = True
        
print(ans)
0