結果

問題 No.3107 Listening
ユーザー cho435cho435
提出日時 2024-04-03 16:21:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 3,942 ms
コンパイル使用メモリ 261,836 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 00:00:14
合計ジャッジ時間 28,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 371 ms
5,248 KB
testcase_04 AC 74 ms
5,248 KB
testcase_05 AC 114 ms
5,248 KB
testcase_06 AC 81 ms
5,248 KB
testcase_07 AC 224 ms
5,248 KB
testcase_08 AC 139 ms
5,248 KB
testcase_09 AC 229 ms
5,248 KB
testcase_10 AC 357 ms
5,248 KB
testcase_11 AC 501 ms
5,248 KB
testcase_12 AC 154 ms
5,248 KB
testcase_13 AC 360 ms
5,248 KB
testcase_14 AC 185 ms
5,248 KB
testcase_15 AC 155 ms
5,248 KB
testcase_16 AC 77 ms
5,248 KB
testcase_17 AC 100 ms
5,248 KB
testcase_18 AC 43 ms
5,248 KB
testcase_19 AC 264 ms
5,248 KB
testcase_20 AC 305 ms
5,248 KB
testcase_21 AC 545 ms
5,248 KB
testcase_22 AC 384 ms
5,248 KB
testcase_23 AC 500 ms
5,248 KB
testcase_24 AC 528 ms
5,248 KB
testcase_25 AC 290 ms
5,248 KB
testcase_26 AC 98 ms
5,248 KB
testcase_27 AC 253 ms
5,248 KB
testcase_28 AC 448 ms
5,248 KB
testcase_29 AC 459 ms
5,248 KB
testcase_30 AC 214 ms
5,248 KB
testcase_31 AC 312 ms
5,248 KB
testcase_32 AC 404 ms
5,248 KB
testcase_33 AC 644 ms
5,248 KB
testcase_34 AC 655 ms
5,248 KB
testcase_35 AC 652 ms
5,248 KB
testcase_36 AC 635 ms
5,248 KB
testcase_37 AC 630 ms
5,248 KB
testcase_38 AC 654 ms
5,248 KB
testcase_39 AC 654 ms
5,248 KB
testcase_40 AC 646 ms
5,248 KB
testcase_41 AC 627 ms
5,248 KB
testcase_42 AC 645 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
using mint = atcoder::modint998244353;

int main(){
	int n,m;
	cin>>n>>m;
	vector<int> stl(n,0),ans;
	rep(i,m){
		int u,v;
		cin>>u>>v;
		u--; v--;
		if(stl.at(u)==0&&stl.at(v)==0){
			stl.at(u)=1;
			stl.at(v)=1;
			ans.push_back(i+1);
		}
	}
	cout<<ans.size()<<endl;
	for(auto x:ans) cout<<x<<endl;
}
0