結果

問題 No.2779 Don't make Pair
ユーザー anonymouslyanonymously
提出日時 2024-06-07 22:23:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,048 KB
最終ジャッジ日時 2024-06-07 22:23:39
合計ジャッジ時間 4,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 32 ms
11,776 KB
testcase_10 AC 40 ms
17,176 KB
testcase_11 AC 36 ms
12,384 KB
testcase_12 AC 93 ms
22,288 KB
testcase_13 AC 97 ms
23,208 KB
testcase_14 AC 86 ms
18,740 KB
testcase_15 AC 132 ms
28,212 KB
testcase_16 AC 143 ms
28,972 KB
testcase_17 AC 130 ms
25,288 KB
testcase_18 AC 110 ms
21,996 KB
testcase_19 AC 123 ms
26,204 KB
testcase_20 AC 71 ms
18,348 KB
testcase_21 AC 196 ms
36,172 KB
testcase_22 AC 178 ms
36,288 KB
testcase_23 AC 217 ms
38,048 KB
testcase_24 AC 178 ms
36,032 KB
testcase_25 AC 182 ms
36,032 KB
testcase_26 AC 178 ms
35,900 KB
testcase_27 AC 207 ms
35,900 KB
testcase_28 AC 183 ms
35,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
A = input().split()
D = defaultdict(list)
lower = 1
upper = N
for i in range(N):
    D[A[i]].append(i+1)
    if len(D[A[i]]) > 2:
        print(0)
        print()
        exit()
    elif len(D[A[i]]) == 2:
        lower = max(lower, D[A[i]][0])
        upper = min(upper, D[A[i]][1])
print(max(upper-lower, 0))
print(*range(lower, upper))
0