結果

問題 No.2779 Don't make Pair
ユーザー ntudantuda
提出日時 2024-06-08 09:50:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,548 KB
最終ジャッジ日時 2024-06-08 09:50:41
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,376 KB
testcase_01 WA -
testcase_02 AC 40 ms
53,376 KB
testcase_03 WA -
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 76 ms
87,808 KB
testcase_13 AC 86 ms
94,080 KB
testcase_14 AC 85 ms
87,168 KB
testcase_15 AC 102 ms
99,072 KB
testcase_16 WA -
testcase_17 AC 103 ms
96,768 KB
testcase_18 AC 90 ms
92,928 KB
testcase_19 AC 99 ms
99,328 KB
testcase_20 AC 83 ms
86,016 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 123 ms
102,548 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 108 ms
97,408 KB
testcase_27 AC 110 ms
97,536 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
A = list(map(int, input().split()))
dic = defaultdict(list)
for i, a in enumerate(A):
    dic[a].append(i)
left = 1
right = N - 1
for v in dic.values():
    if len(v) > 2:
        print(0)
        exit()
    elif len(v) == 2:
        left = max(left, v[0] + 1)
        right = min(right, v[1])
if left <= right:
    print(right - left + 1)
    print(*list(range(left, right + 1)))
else:
    print(0)
0