結果

問題 No.2779 Don't make Pair
ユーザー あじゃじゃあじゃじゃ
提出日時 2024-06-07 22:44:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-12-26 09:06:45
合計ジャッジ時間 5,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,632 KB
testcase_01 AC 56 ms
53,120 KB
testcase_02 AC 55 ms
53,376 KB
testcase_03 WA -
testcase_04 AC 55 ms
53,632 KB
testcase_05 AC 55 ms
53,504 KB
testcase_06 AC 56 ms
53,120 KB
testcase_07 AC 54 ms
53,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 115 ms
93,440 KB
testcase_13 AC 115 ms
93,696 KB
testcase_14 AC 111 ms
88,192 KB
testcase_15 AC 154 ms
104,960 KB
testcase_16 AC 145 ms
97,920 KB
testcase_17 AC 145 ms
102,400 KB
testcase_18 AC 124 ms
95,232 KB
testcase_19 AC 147 ms
104,064 KB
testcase_20 AC 117 ms
87,168 KB
testcase_21 AC 160 ms
101,504 KB
testcase_22 AC 162 ms
101,252 KB
testcase_23 AC 176 ms
102,464 KB
testcase_24 AC 158 ms
101,920 KB
testcase_25 AC 159 ms
101,120 KB
testcase_26 AC 165 ms
101,248 KB
testcase_27 AC 165 ms
101,248 KB
testcase_28 AC 162 ms
100,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dp=defaultdict(int)
f=defaultdict(int)
indf=-1
N=int(input())
A=list(map(int,input().split()))
ind2=N
for a in range(N):
    if dp[A[a]]==2:
        print(0)
        exit()
    elif dp[A[a]]==1:
        indf=max(indf,f[A[a]])
        ind2=min(ind2,a)
    elif dp[A[a]]==0:
        f[A[a]]=a
    dp[A[a]]+=1
if ind2==N:
    print(N-1)
    print(*[i+1 for i in range(N-1)])
    exit()

ans= [i+1 for i in range(indf,ind2)] 
print(len(ans))
print(*ans)
0