結果

問題 No.2779 Don't make Pair
ユーザー 👑 rin204rin204
提出日時 2024-06-07 21:28:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 110,524 KB
最終ジャッジ日時 2024-06-07 21:28:31
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 38 ms
53,272 KB
testcase_02 AC 36 ms
52,728 KB
testcase_03 WA -
testcase_04 AC 35 ms
53,256 KB
testcase_05 AC 35 ms
52,648 KB
testcase_06 AC 38 ms
51,820 KB
testcase_07 AC 38 ms
52,708 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 62 ms
82,568 KB
testcase_13 AC 69 ms
81,892 KB
testcase_14 AC 59 ms
81,792 KB
testcase_15 AC 81 ms
97,364 KB
testcase_16 AC 75 ms
96,328 KB
testcase_17 AC 85 ms
93,900 KB
testcase_18 AC 73 ms
89,316 KB
testcase_19 AC 73 ms
91,744 KB
testcase_20 AC 58 ms
77,108 KB
testcase_21 AC 82 ms
102,432 KB
testcase_22 AC 93 ms
102,828 KB
testcase_23 AC 101 ms
110,524 KB
testcase_24 AC 82 ms
102,068 KB
testcase_25 AC 81 ms
102,332 KB
testcase_26 AC 95 ms
103,652 KB
testcase_27 AC 119 ms
107,232 KB
testcase_28 AC 82 ms
102,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
l_ma = 0
r_mi = n - 1
dic = {}

for i, a in enumerate(A):
    if a not in dic:
        dic[a] = i
    else:
        j = dic[a]
        if j == -1:
            print(0)
            exit()
        l_ma = max(l_ma, j)
        r_mi = min(r_mi, i)
        dic[a] = -1

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