結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー ntudantuda
提出日時 2021-09-06 18:13:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 77,848 KB
最終ジャッジ日時 2024-06-02 02:45:03
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,668 KB
testcase_01 AC 35 ms
58,436 KB
testcase_02 AC 34 ms
51,944 KB
testcase_03 AC 34 ms
52,956 KB
testcase_04 AC 33 ms
53,052 KB
testcase_05 AC 79 ms
77,744 KB
testcase_06 AC 81 ms
77,848 KB
testcase_07 AC 80 ms
77,684 KB
testcase_08 AC 81 ms
77,736 KB
testcase_09 AC 80 ms
77,708 KB
testcase_10 AC 79 ms
77,672 KB
testcase_11 AC 79 ms
77,396 KB
testcase_12 AC 77 ms
77,444 KB
testcase_13 AC 78 ms
77,480 KB
testcase_14 AC 40 ms
55,840 KB
testcase_15 AC 40 ms
55,684 KB
testcase_16 AC 38 ms
55,004 KB
testcase_17 AC 40 ms
55,308 KB
testcase_18 AC 41 ms
56,164 KB
testcase_19 AC 42 ms
55,808 KB
testcase_20 AC 40 ms
55,548 KB
testcase_21 AC 41 ms
56,048 KB
testcase_22 AC 41 ms
54,516 KB
testcase_23 AC 34 ms
53,852 KB
testcase_24 AC 33 ms
53,128 KB
testcase_25 AC 35 ms
53,508 KB
testcase_26 AC 33 ms
53,496 KB
testcase_27 AC 34 ms
52,876 KB
testcase_28 AC 34 ms
53,400 KB
testcase_29 AC 34 ms
52,656 KB
testcase_30 AC 33 ms
53,724 KB
testcase_31 AC 34 ms
53,088 KB
testcase_32 AC 32 ms
53,420 KB
testcase_33 AC 34 ms
52,588 KB
testcase_34 AC 34 ms
52,480 KB
testcase_35 AC 33 ms
53,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
AB = [list(map(int,input().split())) for _ in range(M)]

E =[[] for _ in range(N+1)]
for a,b in AB:
    E[a].append(b)
    E[b].append(a)

L = set()
for i in range(1,N+1):
    if len(E[i]) == 1 and not(E[i][0] in L):
        L.add(i)

cnt = 0
while len(L) > 0:
    cnt += 1
    a = next(iter((L)))
    L.remove(a)
    b = E[a][0]
    E[a].remove(b)
    E[b].remove(a)
    if len(E[b]) == 1 and (len(E[E[b][0]])!=1):
        L.add(b)

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