結果

問題 No.8107 Listening
ユーザー miya145592miya145592
提出日時 2024-04-02 00:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-09-30 22:58:01
合計ジャッジ時間 20,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 262 ms
84,016 KB
testcase_04 AC 102 ms
78,208 KB
testcase_05 AC 122 ms
83,712 KB
testcase_06 AC 109 ms
78,316 KB
testcase_07 AC 194 ms
88,232 KB
testcase_08 AC 143 ms
86,272 KB
testcase_09 AC 179 ms
82,176 KB
testcase_10 AC 241 ms
79,360 KB
testcase_11 AC 313 ms
80,536 KB
testcase_12 AC 152 ms
85,376 KB
testcase_13 AC 254 ms
83,840 KB
testcase_14 AC 170 ms
86,528 KB
testcase_15 AC 139 ms
77,456 KB
testcase_16 AC 108 ms
80,768 KB
testcase_17 AC 123 ms
85,248 KB
testcase_18 AC 88 ms
77,644 KB
testcase_19 AC 206 ms
82,816 KB
testcase_20 AC 217 ms
79,360 KB
testcase_21 AC 359 ms
87,592 KB
testcase_22 AC 265 ms
81,920 KB
testcase_23 AC 346 ms
88,320 KB
testcase_24 AC 300 ms
78,592 KB
testcase_25 AC 234 ms
87,936 KB
testcase_26 AC 125 ms
84,636 KB
testcase_27 AC 184 ms
78,976 KB
testcase_28 AC 289 ms
82,432 KB
testcase_29 AC 308 ms
86,912 KB
testcase_30 AC 169 ms
86,272 KB
testcase_31 AC 205 ms
85,764 KB
testcase_32 AC 279 ms
84,916 KB
testcase_33 AC 493 ms
101,756 KB
testcase_34 AC 493 ms
101,760 KB
testcase_35 AC 501 ms
101,420 KB
testcase_36 AC 490 ms
101,760 KB
testcase_37 AC 477 ms
101,556 KB
testcase_38 AC 498 ms
101,376 KB
testcase_39 AC 479 ms
101,760 KB
testcase_40 AC 502 ms
101,576 KB
testcase_41 AC 498 ms
101,632 KB
testcase_42 AC 483 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
G = [[] for _ in range(N)]
ans = []
for i in range(M):
    u, v = map(int, input().split())
    u-=1
    v-=1
    if len(G[u])==0 and len(G[v])==0:
        G[u].append(v)
        G[v].append(u)
        ans.append(i+1)
print(len(ans))
for a in ans:
    print(a)
0