結果

問題 No.182 新規性の虜
ユーザー MarioMario
提出日時 2018-04-30 21:03:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,388 KB
最終ジャッジ日時 2024-06-27 23:58:13
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,368 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 79 ms
16,104 KB
testcase_09 AC 109 ms
19,608 KB
testcase_10 AC 100 ms
18,680 KB
testcase_11 AC 87 ms
17,144 KB
testcase_12 AC 53 ms
13,336 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 93 ms
17,836 KB
testcase_19 AC 75 ms
15,780 KB
testcase_20 AC 56 ms
13,568 KB
testcase_21 AC 102 ms
18,884 KB
testcase_22 AC 61 ms
14,516 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 97 ms
20,388 KB
testcase_25 AC 74 ms
12,356 KB
testcase_26 AC 38 ms
11,904 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 100 ms
21,676 KB
evil02.txt AC 102 ms
21,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

_ = int(input())
numbers = list(map(int, input().split()))
numbers.sort()

flag = 0
counter = 0

for i, num in enumerate(numbers[:-1]):
    
    if num != numbers[i+1] and flag != numbers[i]:
        counter += 1
    else:
        flag = num

if flag != numbers[-1]:
    counter += 1

print(counter)
0