結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー m1k__m1k__
提出日時 2021-07-21 22:40:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 77,508 KB
最終ジャッジ日時 2024-07-17 19:42:43
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 43 ms
59,776 KB
testcase_02 AC 40 ms
54,144 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 107 ms
77,192 KB
testcase_06 AC 97 ms
77,508 KB
testcase_07 AC 97 ms
77,184 KB
testcase_08 AC 95 ms
77,056 KB
testcase_09 AC 96 ms
77,056 KB
testcase_10 AC 97 ms
77,440 KB
testcase_11 AC 97 ms
77,184 KB
testcase_12 AC 96 ms
77,056 KB
testcase_13 AC 100 ms
77,172 KB
testcase_14 AC 48 ms
55,936 KB
testcase_15 AC 48 ms
56,448 KB
testcase_16 AC 47 ms
56,320 KB
testcase_17 AC 48 ms
56,704 KB
testcase_18 AC 49 ms
56,320 KB
testcase_19 AC 48 ms
56,192 KB
testcase_20 AC 49 ms
56,192 KB
testcase_21 AC 53 ms
56,192 KB
testcase_22 AC 52 ms
56,448 KB
testcase_23 AC 40 ms
53,888 KB
testcase_24 AC 40 ms
53,760 KB
testcase_25 AC 41 ms
53,760 KB
testcase_26 AC 41 ms
53,760 KB
testcase_27 AC 41 ms
53,760 KB
testcase_28 AC 43 ms
53,504 KB
testcase_29 AC 42 ms
54,272 KB
testcase_30 AC 41 ms
53,376 KB
testcase_31 AC 41 ms
54,144 KB
testcase_32 AC 41 ms
54,016 KB
testcase_33 AC 42 ms
53,760 KB
testcase_34 AC 41 ms
53,504 KB
testcase_35 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = [int(x) for x in input().split()]
deg = [0]*N
to = [[]*N for _ in range(N)]
for _ in range(M):
    a, b = [int(x)-1 for x in input().split()]
    to[a].append(b)
    to[b].append(a)
    deg[a] += 1
    deg[b] += 1

from collections import deque
q = deque([v for v in range(N) if deg[v]==1])
ans = 0
while q:
    v = q.popleft()
    if deg[v]==0: continue
    deg[v] -= 1
    for u in to[v]:
        if deg[u]==0: continue
        ans ^= 1
        deg[u] -= 1
        if deg[u]==1: q.append(u)
print('Yes' if ans else 'No')
0