結果

問題 No.3107 Listening
ユーザー hiryuNhiryuN
提出日時 2024-04-01 21:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,756 KB
最終ジャッジ日時 2024-09-30 22:18:35
合計ジャッジ時間 28,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 463 ms
82,996 KB
testcase_04 AC 136 ms
76,928 KB
testcase_05 AC 167 ms
81,240 KB
testcase_06 AC 148 ms
77,520 KB
testcase_07 AC 302 ms
85,456 KB
testcase_08 AC 208 ms
83,536 KB
testcase_09 AC 289 ms
81,032 KB
testcase_10 AC 435 ms
78,080 KB
testcase_11 AC 583 ms
79,060 KB
testcase_12 AC 219 ms
83,144 KB
testcase_13 AC 477 ms
82,740 KB
testcase_14 AC 255 ms
83,836 KB
testcase_15 AC 209 ms
77,288 KB
testcase_16 AC 143 ms
78,760 KB
testcase_17 AC 157 ms
83,072 KB
testcase_18 AC 111 ms
77,228 KB
testcase_19 AC 370 ms
81,820 KB
testcase_20 AC 391 ms
77,952 KB
testcase_21 AC 672 ms
84,724 KB
testcase_22 AC 485 ms
79,556 KB
testcase_23 AC 625 ms
87,088 KB
testcase_24 AC 569 ms
77,568 KB
testcase_25 AC 390 ms
84,912 KB
testcase_26 AC 155 ms
83,064 KB
testcase_27 AC 305 ms
78,336 KB
testcase_28 AC 561 ms
81,224 KB
testcase_29 AC 586 ms
86,084 KB
testcase_30 AC 266 ms
84,304 KB
testcase_31 AC 322 ms
84,152 KB
testcase_32 AC 510 ms
83,924 KB
testcase_33 AC 764 ms
98,380 KB
testcase_34 AC 720 ms
98,756 KB
testcase_35 AC 710 ms
98,360 KB
testcase_36 AC 718 ms
98,360 KB
testcase_37 AC 707 ms
98,632 KB
testcase_38 AC 716 ms
98,124 KB
testcase_39 AC 707 ms
97,996 KB
testcase_40 AC 704 ms
98,120 KB
testcase_41 AC 714 ms
98,012 KB
testcase_42 AC 734 ms
98,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
A=set()
Ans=[]
for i in range(1,m+1):
	a,b=map(int,input().split())
	if not a in A and not b in A:
		Ans.append(i)
		A.add(a)
		A.add(b)
print(len(Ans))
for i in Ans:
	print(i)
	
0