結果

問題 No.2779 Don't make Pair
ユーザー ra5anchorra5anchor
提出日時 2024-06-08 07:14:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-06-08 07:14:36
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 45 ms
53,632 KB
testcase_05 AC 44 ms
53,376 KB
testcase_06 WA -
testcase_07 AC 45 ms
53,632 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 114 ms
93,184 KB
testcase_13 AC 113 ms
92,416 KB
testcase_14 WA -
testcase_15 AC 141 ms
103,040 KB
testcase_16 WA -
testcase_17 AC 121 ms
93,952 KB
testcase_18 WA -
testcase_19 AC 131 ms
99,072 KB
testcase_20 AC 97 ms
87,424 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 170 ms
108,672 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 154 ms
108,544 KB
testcase_27 AC 159 ms
108,416 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    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)
    exit()
else:
    print(r - l)
    ans = list(range(l+1, r+1))
    print(*ans)
0