結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー O2MTO2MT
提出日時 2021-07-21 22:16:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,908 KB
最終ジャッジ日時 2024-07-17 19:07:01
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,792 KB
testcase_01 AC 46 ms
67,816 KB
testcase_02 AC 36 ms
54,492 KB
testcase_03 AC 36 ms
53,792 KB
testcase_04 AC 36 ms
54,480 KB
testcase_05 WA -
testcase_06 AC 88 ms
77,636 KB
testcase_07 AC 88 ms
77,496 KB
testcase_08 AC 87 ms
77,852 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 91 ms
77,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 42 ms
56,188 KB
testcase_16 WA -
testcase_17 AC 42 ms
56,860 KB
testcase_18 AC 46 ms
63,440 KB
testcase_19 AC 41 ms
56,308 KB
testcase_20 WA -
testcase_21 AC 41 ms
57,816 KB
testcase_22 WA -
testcase_23 AC 35 ms
54,596 KB
testcase_24 AC 37 ms
54,180 KB
testcase_25 AC 34 ms
53,740 KB
testcase_26 AC 35 ms
54,296 KB
testcase_27 AC 36 ms
54,512 KB
testcase_28 AC 36 ms
54,468 KB
testcase_29 AC 35 ms
53,940 KB
testcase_30 AC 37 ms
54,244 KB
testcase_31 AC 35 ms
54,792 KB
testcase_32 AC 35 ms
54,076 KB
testcase_33 AC 35 ms
54,252 KB
testcase_34 AC 35 ms
54,508 KB
testcase_35 AC 34 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M = map(int,input().split())
l = [[] for _ in range(N)]
visited = [False]*N

for _ in range(M):
  a,b = map(int,input().split())
  a -= 1
  b -= 1
  l[a].append(b)
  l[b].append(a)

num = 0

for i in range(N):
  if len(l[i]) >1:
    continue
  visited[i] = True
  que = deque([i])
  while que:
    v = que.popleft()
    for vv in l[v]:
      if not visited[vv]:
        que.append(vv)
        visited[vv] = True
        num += 1

if num%2 != 0:
  print('Yes')
else:
  print('No')
0