結果

問題 No.2779 Don't make Pair
ユーザー あじゃじゃあじゃじゃ
提出日時 2024-06-07 22:54:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 259,456 KB
最終ジャッジ日時 2024-06-07 22:55:02
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,880 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 1,363 ms
76,160 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dp=defaultdict(int)
f=defaultdict(int)
N=int(input())
A=list(map(int,input().split()))
ans=[]
for a in range(N):
    if len(list(set(A[:a])))+len(list(set(A[a:])))==N:
        ans.append(a)
print(len(ans))
print(*ans)
0