結果

問題 No.8107 Listening
ユーザー titiatitia
提出日時 2024-04-03 01:13:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 322 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 217,216 KB
最終ジャッジ日時 2024-09-30 23:31:31
合計ジャッジ時間 70,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,649 ms
138,880 KB
testcase_04 AC 267 ms
34,048 KB
testcase_05 AC 316 ms
37,504 KB
testcase_06 AC 338 ms
40,320 KB
testcase_07 AC 829 ms
81,280 KB
testcase_08 AC 456 ms
49,024 KB
testcase_09 AC 801 ms
82,560 KB
testcase_10 AC 1,681 ms
150,656 KB
testcase_11 TLE -
testcase_12 AC 542 ms
52,096 KB
testcase_13 AC 1,571 ms
137,088 KB
testcase_14 AC 614 ms
65,536 KB
testcase_15 AC 673 ms
66,816 KB
testcase_16 AC 258 ms
32,512 KB
testcase_17 AC 288 ms
33,792 KB
testcase_18 AC 173 ms
24,960 KB
testcase_19 AC 1,155 ms
102,656 KB
testcase_20 AC 1,380 ms
127,360 KB
testcase_21 TLE -
testcase_22 AC 1,778 ms
156,544 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,096 ms
104,320 KB
testcase_26 AC 286 ms
34,176 KB
testcase_27 AC 1,024 ms
96,384 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 714 ms
67,456 KB
testcase_31 AC 952 ms
86,656 KB
testcase_32 AC 1,707 ms
150,016 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

EDGE=[list(map(int,input().split())) for i in range(M)]

USE=[0]*(N+1)
ANS=[]
for i in range(M):
    x,y = EDGE[i]
    if USE[x]==0 and USE[y]==0:
        USE[x]=1
        USE[y]=1
        ANS.append(i+1)

print(len(ANS))
for ans in ANS:
    print(ans)
0