結果

問題 No.3107 Listening
ユーザー nikoro256nikoro256
提出日時 2024-04-01 21:40:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 86,200 KB
最終ジャッジ日時 2024-09-30 22:16:07
合計ジャッジ時間 22,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 37 ms
53,144 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 398 ms
78,820 KB
testcase_04 AC 126 ms
76,792 KB
testcase_05 AC 143 ms
78,324 KB
testcase_06 AC 128 ms
77,032 KB
testcase_07 AC 225 ms
80,392 KB
testcase_08 AC 158 ms
79,672 KB
testcase_09 AC 216 ms
78,096 KB
testcase_10 AC 347 ms
77,132 KB
testcase_11 AC 447 ms
77,840 KB
testcase_12 AC 160 ms
78,768 KB
testcase_13 AC 330 ms
79,472 KB
testcase_14 AC 186 ms
78,908 KB
testcase_15 AC 175 ms
76,692 KB
testcase_16 AC 118 ms
77,600 KB
testcase_17 AC 126 ms
79,184 KB
testcase_18 AC 98 ms
76,332 KB
testcase_19 AC 263 ms
78,728 KB
testcase_20 AC 297 ms
76,968 KB
testcase_21 AC 475 ms
80,564 KB
testcase_22 AC 359 ms
78,044 KB
testcase_23 AC 435 ms
80,884 KB
testcase_24 AC 449 ms
76,720 KB
testcase_25 AC 270 ms
80,184 KB
testcase_26 AC 125 ms
79,076 KB
testcase_27 AC 247 ms
76,580 KB
testcase_28 AC 404 ms
78,784 KB
testcase_29 AC 410 ms
80,444 KB
testcase_30 AC 193 ms
79,916 KB
testcase_31 AC 228 ms
79,264 KB
testcase_32 AC 372 ms
79,884 KB
testcase_33 AC 537 ms
86,084 KB
testcase_34 AC 530 ms
86,064 KB
testcase_35 AC 519 ms
85,996 KB
testcase_36 AC 530 ms
85,936 KB
testcase_37 AC 523 ms
86,068 KB
testcase_38 AC 533 ms
85,992 KB
testcase_39 AC 556 ms
85,856 KB
testcase_40 AC 682 ms
86,200 KB
testcase_41 AC 579 ms
86,004 KB
testcase_42 AC 596 ms
85,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
use=[False]*(N+1)
ans=[]
for i in range(M):
    u,v=map(int,input().split())
    if (not use[u]) and (not use[v]):
        use[u]=True
        use[v]=True
        ans.append(i+1)
print(len(ans))
print(*ans,sep='\n')
0