結果

問題 No.2779 Don't make Pair
ユーザー rlangevinrlangevin
提出日時 2024-06-07 21:40:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 119,924 KB
最終ジャッジ日時 2024-06-07 21:40:34
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 41 ms
61,184 KB
testcase_10 AC 58 ms
76,672 KB
testcase_11 AC 44 ms
63,744 KB
testcase_12 AC 63 ms
79,104 KB
testcase_13 AC 65 ms
79,872 KB
testcase_14 AC 77 ms
87,296 KB
testcase_15 AC 84 ms
95,504 KB
testcase_16 AC 76 ms
92,496 KB
testcase_17 AC 91 ms
98,688 KB
testcase_18 AC 88 ms
93,184 KB
testcase_19 AC 79 ms
92,672 KB
testcase_20 AC 65 ms
77,312 KB
testcase_21 AC 81 ms
97,664 KB
testcase_22 AC 72 ms
89,216 KB
testcase_23 AC 122 ms
119,924 KB
testcase_24 AC 77 ms
93,440 KB
testcase_25 AC 78 ms
94,080 KB
testcase_26 AC 89 ms
100,608 KB
testcase_27 AC 101 ms
106,752 KB
testcase_28 AC 83 ms
98,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

L, R = -1, -1
S = set()
for i in range(N):
    if A[i] in S:
        break
    S.add(A[i])
    L = i
    
S = set()
for i in range(N-1, -1, -1):
    if A[i] in S:
        break
    S.add(A[i])
    R = i

if R == 0:
    R += 1
if L == N - 1:
    L -= 1
ans = list(range(R, L + 2))
print(len(ans))
print(*ans)
0