結果

問題 No.2779 Don't make Pair
ユーザー Abhishek ChoudharyAbhishek Choudhary
提出日時 2024-06-07 21:32:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 107,280 KB
最終ジャッジ日時 2024-06-07 21:32:15
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,568 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 45 ms
54,016 KB
testcase_03 AC 46 ms
53,504 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 39 ms
53,120 KB
testcase_08 AC 38 ms
53,760 KB
testcase_09 AC 63 ms
72,704 KB
testcase_10 AC 111 ms
100,192 KB
testcase_11 AC 73 ms
79,488 KB
testcase_12 AC 102 ms
91,776 KB
testcase_13 AC 105 ms
90,368 KB
testcase_14 AC 99 ms
87,300 KB
testcase_15 AC 150 ms
99,712 KB
testcase_16 AC 132 ms
101,504 KB
testcase_17 AC 120 ms
92,340 KB
testcase_18 AC 101 ms
88,192 KB
testcase_19 AC 123 ms
94,848 KB
testcase_20 AC 98 ms
86,368 KB
testcase_21 AC 149 ms
106,880 KB
testcase_22 AC 144 ms
106,880 KB
testcase_23 AC 177 ms
107,280 KB
testcase_24 AC 167 ms
106,752 KB
testcase_25 AC 144 ms
106,752 KB
testcase_26 AC 147 ms
107,136 KB
testcase_27 AC 153 ms
106,880 KB
testcase_28 AC 145 ms
106,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())

arr = list(map(int, input().split()))

l = Counter()
r = Counter(arr)
ll = Counter()
rr = Counter()
for c in r:
    rr[r[c]] += 1
res = []

for i in range(n - 1):
    if l[arr[i]] > 0:
        ll[l[arr[i]]] -= 1
    l[arr[i]] += 1
    ll[l[arr[i]]] += 1
    rr[r[arr[i]]] -= 1
    r[arr[i]] -= 1
    if r[arr[i]] > 0:
        rr[r[arr[i]]] += 1
    if ll[1] == i + 1 and rr[1] == n - i - 1:
        res.append(i + 1)
       
print(len(res))
print(*res)
0