結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-21 21:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-07-17 15:59:03
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 43 ms
60,032 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 70 ms
71,552 KB
testcase_06 AC 69 ms
71,680 KB
testcase_07 AC 69 ms
70,912 KB
testcase_08 AC 70 ms
71,680 KB
testcase_09 AC 69 ms
71,424 KB
testcase_10 AC 71 ms
71,064 KB
testcase_11 AC 70 ms
71,936 KB
testcase_12 AC 65 ms
70,752 KB
testcase_13 AC 67 ms
71,552 KB
testcase_14 AC 44 ms
54,504 KB
testcase_15 AC 44 ms
55,168 KB
testcase_16 AC 42 ms
54,528 KB
testcase_17 AC 43 ms
54,528 KB
testcase_18 AC 44 ms
54,400 KB
testcase_19 AC 42 ms
55,004 KB
testcase_20 AC 43 ms
54,528 KB
testcase_21 AC 43 ms
54,528 KB
testcase_22 AC 42 ms
54,784 KB
testcase_23 AC 41 ms
53,504 KB
testcase_24 AC 40 ms
54,144 KB
testcase_25 AC 40 ms
53,888 KB
testcase_26 AC 41 ms
53,376 KB
testcase_27 AC 41 ms
53,632 KB
testcase_28 AC 41 ms
54,144 KB
testcase_29 AC 44 ms
53,632 KB
testcase_30 AC 40 ms
53,888 KB
testcase_31 AC 40 ms
54,272 KB
testcase_32 AC 41 ms
53,760 KB
testcase_33 AC 40 ms
53,632 KB
testcase_34 AC 41 ms
53,760 KB
testcase_35 AC 41 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

from sys import stdin
import sys
from collections import deque

N,M = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]
en = [0] * N

for i in range(M):

    A,B = map(int,stdin.readline().split())
    A -= 1
    B -= 1

    lis[A].append(B)
    lis[B].append(A)

    en[A] += 1
    en[B] += 1

q = deque()

for i in range(N):
    if en[i] == 1:
        q.append(i)

dnum = 0
while q:

    v = q.popleft()
    if en[v] == 1:
        dnum += 1
        en[v] = 0

    for nex in lis[v]:

        en[nex] -= 1

        if en[nex] == 1:
            q.append(nex)

#print (en)

if dnum % 2 == 1:
    print ("Yes")
else:
    print ("No")
0