結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー playerplayer
提出日時 2023-12-20 15:12:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 77,460 KB
最終ジャッジ日時 2024-09-27 09:51:42
合計ジャッジ時間 3,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,404 KB
testcase_01 AC 47 ms
59,796 KB
testcase_02 AC 39 ms
52,924 KB
testcase_03 AC 39 ms
53,284 KB
testcase_04 AC 40 ms
53,340 KB
testcase_05 AC 93 ms
77,160 KB
testcase_06 AC 91 ms
77,008 KB
testcase_07 AC 93 ms
77,188 KB
testcase_08 AC 92 ms
77,300 KB
testcase_09 AC 92 ms
77,460 KB
testcase_10 AC 89 ms
77,256 KB
testcase_11 AC 92 ms
77,096 KB
testcase_12 AC 90 ms
77,312 KB
testcase_13 AC 91 ms
77,096 KB
testcase_14 AC 45 ms
56,136 KB
testcase_15 AC 44 ms
55,384 KB
testcase_16 AC 46 ms
56,168 KB
testcase_17 AC 46 ms
55,616 KB
testcase_18 AC 47 ms
55,328 KB
testcase_19 AC 45 ms
56,428 KB
testcase_20 AC 46 ms
56,084 KB
testcase_21 AC 46 ms
54,504 KB
testcase_22 AC 45 ms
56,048 KB
testcase_23 AC 38 ms
52,980 KB
testcase_24 AC 38 ms
53,048 KB
testcase_25 AC 39 ms
53,572 KB
testcase_26 AC 38 ms
52,740 KB
testcase_27 AC 39 ms
52,952 KB
testcase_28 AC 38 ms
52,948 KB
testcase_29 AC 38 ms
52,400 KB
testcase_30 AC 38 ms
53,928 KB
testcase_31 AC 38 ms
53,140 KB
testcase_32 AC 38 ms
53,164 KB
testcase_33 AC 37 ms
52,816 KB
testcase_34 AC 39 ms
53,904 KB
testcase_35 AC 38 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())

edge = [[] for _ in range(n)]
into = [0]*n
for _ in range(m):
    a,b = map(int,input().split())
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)
    into[a-1] += 1
    into[b-1] += 1  
    
start = set()
for i in range(n):
    if into[i] == 1:
        start.add(i)
# print(start)        
cnt = 0
while len(start) > 0:
    tmp = []
    for now in start:
        for next in edge[now]:
            if into[next] <= 0:
                continue
            into[next] -= 1
            into[now] -= 1
            cnt += 1
            if into[next] == 1:
                tmp.append(next)
    # print(tmp)
    start = set()
    for i in tmp:
        start.add(i)
# print(cnt)       
if cnt%2 == 1:
    print("Yes")
else:
    print("No")
0