結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 31 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 31 ms
51,584 KB
testcase_05 AC 31 ms
52,096 KB
testcase_06 AC 30 ms
52,224 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
84,992 KB
testcase_13 AC 59 ms
84,736 KB
testcase_14 AC 64 ms
86,400 KB
testcase_15 AC 87 ms
103,936 KB
testcase_16 AC 107 ms
106,112 KB
testcase_17 AC 80 ms
97,740 KB
testcase_18 AC 70 ms
92,032 KB
testcase_19 AC 79 ms
98,916 KB
testcase_20 AC 56 ms
78,976 KB
testcase_21 AC 85 ms
105,580 KB
testcase_22 AC 87 ms
105,728 KB
testcase_23 AC 97 ms
105,984 KB
testcase_24 AC 85 ms
105,856 KB
testcase_25 AC 87 ms
105,728 KB
testcase_26 AC 89 ms
105,856 KB
testcase_27 AC 96 ms
105,728 KB
testcase_28 AC 107 ms
105,472 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 = 2, 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