結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー ああいいああいい
提出日時 2022-01-14 18:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 77,796 KB
最終ジャッジ日時 2024-11-19 13:16:19
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,140 KB
testcase_01 AC 46 ms
61,452 KB
testcase_02 AC 44 ms
55,784 KB
testcase_03 AC 44 ms
55,396 KB
testcase_04 AC 43 ms
54,324 KB
testcase_05 AC 95 ms
77,532 KB
testcase_06 AC 94 ms
77,796 KB
testcase_07 AC 94 ms
77,400 KB
testcase_08 AC 96 ms
77,496 KB
testcase_09 AC 94 ms
77,660 KB
testcase_10 AC 93 ms
77,300 KB
testcase_11 AC 94 ms
77,320 KB
testcase_12 AC 94 ms
77,560 KB
testcase_13 AC 95 ms
77,208 KB
testcase_14 AC 50 ms
56,344 KB
testcase_15 AC 50 ms
57,256 KB
testcase_16 AC 51 ms
57,400 KB
testcase_17 AC 50 ms
55,804 KB
testcase_18 AC 49 ms
56,860 KB
testcase_19 AC 50 ms
56,732 KB
testcase_20 AC 50 ms
57,092 KB
testcase_21 AC 50 ms
57,160 KB
testcase_22 AC 51 ms
56,728 KB
testcase_23 AC 44 ms
55,036 KB
testcase_24 AC 44 ms
54,420 KB
testcase_25 AC 44 ms
53,548 KB
testcase_26 AC 44 ms
54,128 KB
testcase_27 AC 44 ms
54,196 KB
testcase_28 AC 43 ms
54,320 KB
testcase_29 AC 44 ms
54,492 KB
testcase_30 AC 44 ms
54,460 KB
testcase_31 AC 43 ms
54,156 KB
testcase_32 AC 45 ms
53,704 KB
testcase_33 AC 44 ms
54,296 KB
testcase_34 AC 45 ms
54,212 KB
testcase_35 AC 43 ms
55,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N+1)]
gnum = [0] * (N+1)
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
    gnum[a] += 1
    gnum[b] += 1
memo = [0] * (N + 1)
from collections import deque
q = deque()
for i in range(1,N+1):
    if gnum[i] == 1:
        q.append(i)
        memo[i] = 1
count = 0
while q:
    now = q.popleft()
    if gnum[now] != 1:continue
    count += 1
    for v in G[now]:
        gnum[v] -= 1
        if gnum[v] == 1:
            memo[v] = 1
            q.append(v)
if count & 1:
    print('Yes')
else:
    print('No')
0