結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 125 ms
12,416 KB
testcase_12 AC 172 ms
13,056 KB
testcase_13 AC 165 ms
13,184 KB
testcase_14 AC 162 ms
13,056 KB
testcase_15 AC 206 ms
13,824 KB
testcase_16 AC 357 ms
16,768 KB
testcase_17 AC 437 ms
17,664 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

d1, d2 = 0, 0

for node in adj_dict:
    d = len(adj_dict[node])
    
    if d == 1:
        d1 += 1
    elif d == 2:
        d2 += 1
    else:
        print('NO')
        exit()
    
if d1 == 2 and d2 == len(adj_dict) - 2:
    print('YES')
else:
    print('NO')
0