結果

問題 No.2779 Don't make Pair
ユーザー dp_ijkdp_ijk
提出日時 2024-06-18 00:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 107,384 KB
最終ジャッジ日時 2024-06-18 00:29:58
合計ジャッジ時間 6,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,640 KB
testcase_01 AC 42 ms
54,288 KB
testcase_02 AC 42 ms
55,260 KB
testcase_03 AC 42 ms
54,924 KB
testcase_04 AC 42 ms
54,724 KB
testcase_05 AC 42 ms
54,196 KB
testcase_06 AC 42 ms
53,916 KB
testcase_07 AC 51 ms
54,000 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 57 ms
67,296 KB
testcase_10 AC 73 ms
85,568 KB
testcase_11 AC 56 ms
68,792 KB
testcase_12 AC 104 ms
94,584 KB
testcase_13 AC 100 ms
90,464 KB
testcase_14 AC 90 ms
88,892 KB
testcase_15 AC 144 ms
100,700 KB
testcase_16 AC 119 ms
101,484 KB
testcase_17 AC 113 ms
92,756 KB
testcase_18 AC 103 ms
95,712 KB
testcase_19 AC 118 ms
99,280 KB
testcase_20 AC 94 ms
86,732 KB
testcase_21 AC 138 ms
106,972 KB
testcase_22 AC 137 ms
107,128 KB
testcase_23 AC 165 ms
107,132 KB
testcase_24 AC 137 ms
107,384 KB
testcase_25 AC 136 ms
106,896 KB
testcase_26 AC 143 ms
106,760 KB
testcase_27 AC 148 ms
107,144 KB
testcase_28 AC 140 ms
107,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
A = list(map(int, input().split()))
S = Counter()
T = Counter(A)
X = 0
Y = len(T)

ans = []
for i, a in enumerate(A, 1):
   S[a] += 1
   if S[a] == 1:
      X += 1
   T[a] -= 1
   if T[a] == 0:
      Y -= 1
      del T[a]
   if X == i and Y == N-i and i != N:
      ans.append(i)

print(len(ans))
print(*ans)
0