結果

問題 No.2779 Don't make Pair
ユーザー ああいいああいい
提出日時 2024-06-12 11:13:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 107,128 KB
最終ジャッジ日時 2024-06-12 11:13:16
合計ジャッジ時間 5,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,148 KB
testcase_01 AC 39 ms
55,052 KB
testcase_02 AC 37 ms
53,492 KB
testcase_03 AC 38 ms
55,028 KB
testcase_04 AC 38 ms
54,748 KB
testcase_05 AC 38 ms
53,564 KB
testcase_06 AC 38 ms
53,692 KB
testcase_07 AC 40 ms
53,844 KB
testcase_08 AC 38 ms
54,600 KB
testcase_09 AC 52 ms
66,116 KB
testcase_10 AC 70 ms
84,428 KB
testcase_11 AC 51 ms
69,456 KB
testcase_12 AC 93 ms
95,448 KB
testcase_13 AC 94 ms
90,876 KB
testcase_14 AC 91 ms
89,588 KB
testcase_15 AC 118 ms
100,320 KB
testcase_16 AC 110 ms
101,500 KB
testcase_17 AC 107 ms
93,576 KB
testcase_18 AC 93 ms
97,036 KB
testcase_19 AC 110 ms
100,296 KB
testcase_20 AC 81 ms
87,144 KB
testcase_21 AC 119 ms
106,924 KB
testcase_22 AC 120 ms
107,128 KB
testcase_23 AC 151 ms
107,096 KB
testcase_24 AC 137 ms
106,648 KB
testcase_25 AC 122 ms
106,884 KB
testcase_26 AC 125 ms
106,908 KB
testcase_27 AC 128 ms
107,092 KB
testcase_28 AC 120 ms
107,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict
h = defaultdict(int)
hh = 0
m = defaultdict(int)
mm = 0
for a in A:
	m[a] += 1
	if m[a] == 2:
		mm += 1

ans = []
for j in range(N - 1):
	a = A[j]
	h[a] += 1
	if h[a] == 2:
		hh += 1
	m[a] -= 1
	if m[a] == 1:
		mm -= 1
	if hh == 0 and  mm == 0:
		ans.append(j + 1)
print(len(ans))
print(*ans)
0