結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー flippergoflippergo
提出日時 2024-12-28 10:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-12-28 10:47:12
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,376 KB
testcase_01 AC 57 ms
60,928 KB
testcase_02 AC 54 ms
53,760 KB
testcase_03 AC 51 ms
53,760 KB
testcase_04 AC 50 ms
53,760 KB
testcase_05 AC 115 ms
78,080 KB
testcase_06 AC 118 ms
77,952 KB
testcase_07 AC 142 ms
77,952 KB
testcase_08 AC 122 ms
77,696 KB
testcase_09 AC 120 ms
77,824 KB
testcase_10 AC 139 ms
77,696 KB
testcase_11 AC 132 ms
78,080 KB
testcase_12 AC 117 ms
77,824 KB
testcase_13 AC 123 ms
78,080 KB
testcase_14 AC 64 ms
55,680 KB
testcase_15 AC 74 ms
55,808 KB
testcase_16 AC 60 ms
55,552 KB
testcase_17 AC 67 ms
55,936 KB
testcase_18 AC 60 ms
55,680 KB
testcase_19 AC 72 ms
55,936 KB
testcase_20 AC 59 ms
55,808 KB
testcase_21 AC 59 ms
55,808 KB
testcase_22 AC 62 ms
55,680 KB
testcase_23 AC 52 ms
53,632 KB
testcase_24 AC 52 ms
53,248 KB
testcase_25 AC 51 ms
53,376 KB
testcase_26 AC 54 ms
53,504 KB
testcase_27 AC 48 ms
53,760 KB
testcase_28 AC 52 ms
53,504 KB
testcase_29 AC 53 ms
53,888 KB
testcase_30 AC 50 ms
53,504 KB
testcase_31 AC 50 ms
53,888 KB
testcase_32 AC 49 ms
53,248 KB
testcase_33 AC 60 ms
53,504 KB
testcase_34 AC 55 ms
53,504 KB
testcase_35 AC 52 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:set() for i in range(1,N+1)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].add(b)
    G[b].add(a)
que = deque([])
for i in range(1,N+1):
    if len(G[i])==1:
        que.append(i)
ans = 0
while que:
    x = que.popleft()
    for y in G[x]:
        G[y].remove(x)
        ans += 1
        if len(G[y])==1:
            que.append(y)
if ans%2==1:
    print("Yes")
else:
    print("No")
0