結果

問題 No.583 鉄道同好会
ユーザー roarisroaris
提出日時 2019-08-04 20:09:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-07-16 01:29:47
合計ジャッジ時間 3,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 130 ms
12,288 KB
testcase_12 AC 169 ms
12,928 KB
testcase_13 AC 159 ms
12,928 KB
testcase_14 AC 170 ms
13,056 KB
testcase_15 AC 199 ms
13,824 KB
testcase_16 AC 356 ms
16,640 KB
testcase_17 AC 436 ms
17,792 KB
testcase_18 AC 422 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, M = map(int, input().split())
adj_dict = defaultdict(list)

for _ in range(M):
    Sa_i, Sb_i = map(int, input().split())
    adj_dict[Sa_i].append(Sb_i)
    adj_dict[Sb_i].append(Sa_i)

degree_even, degree_odd = 0, 0

for node in adj_dict:
    d = len(adj_dict[node])
    
    if d % 2 == 0:
        degree_even += 1
    else:
        degree_odd += 1

if degree_odd == 0 or degree_odd == 2:
    print('YES')
else:
    print('NO')
0