結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,608 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 72 ms
84,992 KB
testcase_13 AC 71 ms
84,480 KB
testcase_14 WA -
testcase_15 AC 100 ms
104,064 KB
testcase_16 AC 96 ms
106,048 KB
testcase_17 AC 95 ms
97,536 KB
testcase_18 WA -
testcase_19 AC 106 ms
98,852 KB
testcase_20 AC 67 ms
78,848 KB
testcase_21 AC 103 ms
106,112 KB
testcase_22 AC 103 ms
105,728 KB
testcase_23 AC 114 ms
105,472 KB
testcase_24 AC 101 ms
105,728 KB
testcase_25 AC 102 ms
105,856 KB
testcase_26 AC 101 ms
105,856 KB
testcase_27 AC 110 ms
105,856 KB
testcase_28 AC 99 ms
105,600 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])
        r = min(r, v[1] - 1)
    else:
        exit(print(-1))

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