結果

問題 No.2779 Don't make Pair
ユーザー vwxyzvwxyz
提出日時 2024-07-14 21:25:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,640 KB
最終ジャッジ日時 2024-07-14 21:25:25
合計ジャッジ時間 6,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 38 ms
12,160 KB
testcase_10 AC 74 ms
19,396 KB
testcase_11 AC 44 ms
13,364 KB
testcase_12 AC 119 ms
22,424 KB
testcase_13 AC 104 ms
22,608 KB
testcase_14 AC 91 ms
18,556 KB
testcase_15 AC 147 ms
26,916 KB
testcase_16 AC 155 ms
27,564 KB
testcase_17 AC 138 ms
24,472 KB
testcase_18 AC 116 ms
21,176 KB
testcase_19 AC 132 ms
25,368 KB
testcase_20 AC 79 ms
17,908 KB
testcase_21 AC 191 ms
34,824 KB
testcase_22 AC 186 ms
34,792 KB
testcase_23 AC 236 ms
36,640 KB
testcase_24 AC 220 ms
34,728 KB
testcase_25 AC 189 ms
34,836 KB
testcase_26 AC 188 ms
34,744 KB
testcase_27 AC 195 ms
34,804 KB
testcase_28 AC 198 ms
34,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N=int(input())
A=list(map(int,input().split()))
idx=defaultdict(list)
for i in range(N):
    idx[A[i]].append(i)
l,r=0,N-1
for a,lst in idx.items():
    if len(lst)>=3:
        l,r=N,0
    elif len(lst)==2:
        i,j=lst
        l=max(l,i)
        r=min(r,j)
ans_lst=[i+1 for i in range(l,r)]
print(len(ans_lst))
print(*ans_lst)
0