結果

問題 No.3107 Listening
ユーザー harurunharurun
提出日時 2024-01-05 14:50:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-09-30 22:01:41
合計ジャッジ時間 24,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 408 ms
77,748 KB
testcase_04 AC 137 ms
76,652 KB
testcase_05 AC 156 ms
77,952 KB
testcase_06 AC 150 ms
76,784 KB
testcase_07 AC 275 ms
78,592 KB
testcase_08 AC 196 ms
78,208 KB
testcase_09 AC 243 ms
77,312 KB
testcase_10 AC 355 ms
77,012 KB
testcase_11 AC 442 ms
77,184 KB
testcase_12 AC 178 ms
78,208 KB
testcase_13 AC 370 ms
78,336 KB
testcase_14 AC 201 ms
78,256 KB
testcase_15 AC 194 ms
76,928 KB
testcase_16 AC 138 ms
77,440 KB
testcase_17 AC 143 ms
77,824 KB
testcase_18 AC 116 ms
76,760 KB
testcase_19 AC 278 ms
77,624 KB
testcase_20 AC 324 ms
76,628 KB
testcase_21 AC 480 ms
78,816 KB
testcase_22 AC 387 ms
77,556 KB
testcase_23 AC 444 ms
79,360 KB
testcase_24 AC 453 ms
77,144 KB
testcase_25 AC 282 ms
78,720 KB
testcase_26 AC 137 ms
77,940 KB
testcase_27 AC 251 ms
77,104 KB
testcase_28 AC 409 ms
77,668 KB
testcase_29 AC 411 ms
78,904 KB
testcase_30 AC 225 ms
78,592 KB
testcase_31 AC 245 ms
78,328 KB
testcase_32 AC 371 ms
78,488 KB
testcase_33 AC 564 ms
82,560 KB
testcase_34 AC 536 ms
82,396 KB
testcase_35 AC 543 ms
82,560 KB
testcase_36 AC 679 ms
82,432 KB
testcase_37 AC 573 ms
82,540 KB
testcase_38 AC 584 ms
82,560 KB
testcase_39 AC 556 ms
82,432 KB
testcase_40 AC 560 ms
82,432 KB
testcase_41 AC 705 ms
82,560 KB
testcase_42 AC 538 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N,M=map(int,input().split())
  V=[0]*N
  ans=[]
  for i in range(M):
    u,v=map(int,input().split())
    u-=1
    v-=1
    if V[u]==0 and V[v]==0:
      V[u]=1
      V[v]=1
      ans.append(i+1)
  print(len(ans))
  for i in ans:
    print(i)
  return

main()
0