結果

問題 No.2779 Don't make Pair
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 21:06:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-06-09 21:07:02
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 33 ms
51,584 KB
testcase_06 WA -
testcase_07 AC 36 ms
51,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 60 ms
84,736 KB
testcase_13 AC 60 ms
84,608 KB
testcase_14 WA -
testcase_15 AC 86 ms
104,192 KB
testcase_16 AC 83 ms
105,984 KB
testcase_17 AC 104 ms
97,408 KB
testcase_18 WA -
testcase_19 AC 80 ms
98,688 KB
testcase_20 AC 56 ms
78,720 KB
testcase_21 AC 88 ms
105,628 KB
testcase_22 AC 87 ms
105,728 KB
testcase_23 AC 99 ms
105,344 KB
testcase_24 AC 86 ms
105,728 KB
testcase_25 AC 92 ms
105,856 KB
testcase_26 AC 89 ms
105,600 KB
testcase_27 AC 97 ms
105,728 KB
testcase_28 AC 87 ms
105,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d = {}
for i, a in enumerate(A):
    if a in d:
        d[a].append(i + 1)
    else:
        d[a] = [i + 1]

l, r = 0, N
for v in d.values():
    if len(v) == 1:
        continue
    if len(v) == 2:
        l = max(l, v[0] + 1)
        r = min(r, v[1])
    else:
        exit(print(-1))

ans = list(range(l - 1, r))
print(len(ans))
print(*ans)
0