結果

問題 No.2779 Don't make Pair
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-07 22:13:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 117,476 KB
最終ジャッジ日時 2024-06-07 22:13:28
合計ジャッジ時間 4,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
55,156 KB
testcase_02 AC 35 ms
54,604 KB
testcase_03 AC 36 ms
53,612 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
53,808 KB
testcase_07 WA -
testcase_08 AC 36 ms
54,176 KB
testcase_09 AC 42 ms
63,224 KB
testcase_10 AC 55 ms
75,876 KB
testcase_11 AC 45 ms
65,120 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 96 ms
91,832 KB
testcase_15 WA -
testcase_16 AC 121 ms
105,032 KB
testcase_17 WA -
testcase_18 AC 98 ms
99,152 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 134 ms
110,148 KB
testcase_22 AC 134 ms
110,136 KB
testcase_23 WA -
testcase_24 AC 148 ms
110,020 KB
testcase_25 AC 133 ms
110,300 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 132 ms
110,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
a = [int(x) for x in input().split()]

cnt = Counter(a)

if any(cnt[x] >= 3 for x in a):
	print("0\n")
	exit()
	
left = {}
right = {}

for i in range(n):
	right[a[i]] = i
	
for i in range(n - 1, -1, -1):
	left[a[i]] = i

p = 0
q = n

for x in a:
	if left[x] == right[x]:
		continue
	p = max(left[x], p)
	q = min(right[x], q)
	
r = range(p + 1, q)

print(len(r))
print(*r)
0