結果

問題 No.2779 Don't make Pair
ユーザー 沙耶花沙耶花
提出日時 2024-06-07 21:38:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 4,717 ms
コンパイル使用メモリ 268,308 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-07 21:38:14
合計ジャッジ時間 7,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 34 ms
6,940 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 49 ms
8,576 KB
testcase_13 AC 53 ms
8,960 KB
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 96 ms
11,904 KB
testcase_16 AC 101 ms
12,544 KB
testcase_17 AC 65 ms
9,344 KB
testcase_18 AC 45 ms
8,192 KB
testcase_19 AC 72 ms
10,624 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 141 ms
14,592 KB
testcase_22 AC 136 ms
14,464 KB
testcase_23 AC 142 ms
14,592 KB
testcase_24 AC 141 ms
14,464 KB
testcase_25 AC 130 ms
14,464 KB
testcase_26 AC 132 ms
14,464 KB
testcase_27 AC 135 ms
14,592 KB
testcase_28 AC 157 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


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