結果

問題 No.2779 Don't make Pair
ユーザー ra5anchorra5anchor
提出日時 2024-06-08 07:19:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-06-08 07:19:21
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 37 ms
53,632 KB
testcase_02 WA -
testcase_03 AC 36 ms
53,888 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 AC 48 ms
54,016 KB
testcase_06 WA -
testcase_07 AC 39 ms
53,120 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 44 ms
63,360 KB
testcase_10 AC 60 ms
80,256 KB
testcase_11 AC 47 ms
66,568 KB
testcase_12 AC 91 ms
92,928 KB
testcase_13 AC 91 ms
92,672 KB
testcase_14 WA -
testcase_15 AC 122 ms
103,424 KB
testcase_16 AC 119 ms
104,576 KB
testcase_17 AC 109 ms
93,568 KB
testcase_18 WA -
testcase_19 AC 123 ms
99,072 KB
testcase_20 AC 83 ms
87,552 KB
testcase_21 AC 135 ms
108,672 KB
testcase_22 AC 133 ms
108,624 KB
testcase_23 AC 146 ms
108,416 KB
testcase_24 AC 127 ms
108,544 KB
testcase_25 AC 133 ms
108,928 KB
testcase_26 AC 134 ms
109,056 KB
testcase_27 AC 151 ms
108,672 KB
testcase_28 AC 134 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))
    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