結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 WA -
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 45 ms
53,120 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 90 ms
93,820 KB
testcase_13 AC 91 ms
93,440 KB
testcase_14 AC 89 ms
88,576 KB
testcase_15 AC 119 ms
104,704 KB
testcase_16 AC 138 ms
98,176 KB
testcase_17 AC 116 ms
102,912 KB
testcase_18 AC 101 ms
95,104 KB
testcase_19 AC 112 ms
104,448 KB
testcase_20 AC 87 ms
87,424 KB
testcase_21 AC 122 ms
101,376 KB
testcase_22 AC 123 ms
101,088 KB
testcase_23 AC 136 ms
102,600 KB
testcase_24 AC 129 ms
101,856 KB
testcase_25 AC 124 ms
100,992 KB
testcase_26 AC 125 ms
101,632 KB
testcase_27 AC 129 ms
101,248 KB
testcase_28 AC 121 ms
101,504 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