結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー hirakuhiraku
提出日時 2022-02-12 22:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 77,648 KB
最終ジャッジ日時 2024-06-29 01:32:33
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,592 KB
testcase_01 AC 41 ms
58,636 KB
testcase_02 AC 36 ms
52,812 KB
testcase_03 AC 37 ms
53,632 KB
testcase_04 AC 37 ms
52,324 KB
testcase_05 AC 87 ms
77,608 KB
testcase_06 AC 84 ms
77,316 KB
testcase_07 AC 89 ms
77,272 KB
testcase_08 AC 86 ms
77,484 KB
testcase_09 AC 88 ms
77,396 KB
testcase_10 AC 85 ms
77,156 KB
testcase_11 AC 85 ms
77,400 KB
testcase_12 AC 85 ms
77,632 KB
testcase_13 AC 84 ms
77,648 KB
testcase_14 AC 44 ms
55,132 KB
testcase_15 AC 43 ms
55,896 KB
testcase_16 AC 44 ms
54,732 KB
testcase_17 AC 44 ms
55,876 KB
testcase_18 AC 43 ms
54,444 KB
testcase_19 AC 44 ms
54,984 KB
testcase_20 AC 44 ms
55,388 KB
testcase_21 AC 43 ms
54,984 KB
testcase_22 AC 44 ms
55,076 KB
testcase_23 AC 36 ms
52,644 KB
testcase_24 AC 37 ms
53,252 KB
testcase_25 AC 37 ms
52,676 KB
testcase_26 AC 36 ms
52,216 KB
testcase_27 AC 36 ms
52,980 KB
testcase_28 AC 37 ms
52,156 KB
testcase_29 AC 37 ms
52,476 KB
testcase_30 AC 36 ms
52,932 KB
testcase_31 AC 37 ms
52,416 KB
testcase_32 AC 37 ms
52,876 KB
testcase_33 AC 36 ms
51,752 KB
testcase_34 AC 36 ms
52,152 KB
testcase_35 AC 37 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1610
# No.1610 She Loves Me, She Loves Me Not, ...

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

graph = [[] for _ in range(n)]
for a, b in AB:
    a -= 1
    b -= 1
    graph[a].append(b)
    graph[b].append(a)

cnt = 0
flg = True
while flg:
    flg = False
    for i in range(n):
        if len(graph[i]) == 1:
            flg = True
            cnt += 1
            nxt = graph[i].pop()
            graph[nxt].remove(i)

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