結果

問題 No.2779 Don't make Pair
ユーザー maeshunmaeshun
提出日時 2024-06-08 12:41:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,078 bytes
コンパイル時間 3,895 ms
コンパイル使用メモリ 267,636 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-08 12:41:35
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
8,576 KB
testcase_13 AC 39 ms
8,960 KB
testcase_14 AC 28 ms
6,948 KB
testcase_15 AC 66 ms
11,940 KB
testcase_16 WA -
testcase_17 AC 48 ms
9,456 KB
testcase_18 AC 37 ms
8,064 KB
testcase_19 AC 53 ms
10,624 KB
testcase_20 AC 26 ms
6,912 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 94 ms
14,592 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 87 ms
14,720 KB
testcase_27 AC 88 ms
14,720 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    map<int, vector<int>> mp;
    rep(i,n) mp[a[i]].push_back(i);
    int l = 0;
    int r = n-1;
    for(auto p : mp) {
        if(p.second.size()>=3) {
            cout << 0 << endl;
            return 0;
        }
        if(p.second.size()<=1) continue;
        l = max(l, p.second[0]);
        r = min(r, p.second[1]);
    }
    if(r-l<0) {
        cout << 0 << endl;
        return 0;
    }
    cout << r - l << endl;
    for(int i=l+1;i<=r;i++){
        cout << i << " ";
    }
    cout << endl;
    return 0;
}
0