結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 23 ms
10,752 KB
testcase_08 AC 68 ms
16,240 KB
testcase_09 AC 99 ms
19,868 KB
testcase_10 AC 88 ms
18,808 KB
testcase_11 AC 77 ms
17,148 KB
testcase_12 AC 49 ms
13,560 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 WA -
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 24 ms
10,752 KB
testcase_18 AC 80 ms
17,844 KB
testcase_19 AC 63 ms
15,788 KB
testcase_20 AC 49 ms
13,824 KB
testcase_21 AC 90 ms
18,976 KB
testcase_22 AC 53 ms
14,516 KB
testcase_23 WA -
testcase_24 AC 91 ms
20,648 KB
testcase_25 AC 66 ms
12,488 KB
testcase_26 AC 34 ms
12,032 KB
testcase_27 AC 25 ms
10,752 KB
evil01.txt AC 96 ms
21,500 KB
evil02.txt AC 101 ms
21,680 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
        if i == N-2:
            ans += 1
        
print(ans)
0