結果

問題 No.2779 Don't make Pair
ユーザー ra5anchorra5anchor
提出日時 2024-06-08 07:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-06-08 07:20:17
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 39 ms
53,376 KB
testcase_04 AC 37 ms
53,504 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 39 ms
53,248 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 59 ms
53,376 KB
testcase_09 AC 47 ms
63,360 KB
testcase_10 AC 66 ms
80,640 KB
testcase_11 AC 51 ms
66,176 KB
testcase_12 AC 99 ms
93,056 KB
testcase_13 AC 100 ms
92,544 KB
testcase_14 AC 84 ms
84,992 KB
testcase_15 AC 135 ms
103,040 KB
testcase_16 AC 132 ms
104,192 KB
testcase_17 AC 110 ms
93,952 KB
testcase_18 AC 89 ms
88,576 KB
testcase_19 AC 130 ms
99,200 KB
testcase_20 AC 89 ms
87,424 KB
testcase_21 AC 145 ms
108,416 KB
testcase_22 AC 139 ms
108,544 KB
testcase_23 AC 162 ms
108,672 KB
testcase_24 AC 141 ms
108,928 KB
testcase_25 AC 138 ms
108,672 KB
testcase_26 AC 141 ms
108,544 KB
testcase_27 AC 149 ms
108,544 KB
testcase_28 AC 149 ms
108,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

from collections import defaultdict
from collections import Counter
C = Counter(A)
if C.most_common()[0][1] > 2:
    # print('aaaaaa')
    print(0)
    print()
    exit()
elif C.most_common()[0][1] == 1:
    print(len(A)-1)
    print(*list(range(1, N)))
    exit()

LR = []
cnt = defaultdict(int)
stt = []
end = []
for i in range(N):
    x = A[i]
    cnt[x] += 1
    if C[x] >= 2 and cnt[x] == 1:
        stt.append(i)
    if C[x] >= 2 and cnt[x] == C[x]:
        end.append(i)
stt.sort()
end.sort()
l = stt[-1]
r = end[0]
# print(l, r, stt, end)
if l > r:
    # print(l, r, stt, end)
    print(0)
    print()
    exit()
else:
    print(r - l)
    ans = list(range(l+1, r+1))
    print(*ans)
0