結果

問題 No.182 新規性の虜
ユーザー excnctexcnct
提出日時 2025-01-02 00:14:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 20,120 KB
最終ジャッジ日時 2025-01-02 00:14:31
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,112 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 26 ms
10,240 KB
testcase_14 WA -
testcase_15 AC 27 ms
10,368 KB
testcase_16 AC 25 ms
10,240 KB
testcase_17 AC 28 ms
10,240 KB
testcase_18 AC 68 ms
17,320 KB
testcase_19 AC 55 ms
15,512 KB
testcase_20 AC 47 ms
13,312 KB
testcase_21 AC 74 ms
18,452 KB
testcase_22 AC 49 ms
14,208 KB
testcase_23 AC 26 ms
10,240 KB
testcase_24 WA -
testcase_25 AC 54 ms
12,248 KB
testcase_26 WA -
testcase_27 AC 27 ms
10,240 KB
evil01.txt WA -
evil02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    a = [int(i) for i in input().split(" ")]
    sorted_a = sorted(a)
    count = 0
    if n == 1:
        print(1)
        return
    elif n == 2:
        if sorted_a[0] != sorted_a[1]:
            print(2)
            return
        else:
            return

    else:
        for i in range(1, n - 1):
            if sorted_a[i] != sorted_a[i + 1] and sorted_a[i] != sorted_a[i - 1]:
                count += 1

        if sorted_a[0] != sorted_a[1] or sorted_a[n - 2] != sorted_a[n - 1]:
            count += 1

    print(count)


if __name__ == "__main__":
    main()
0