結果

問題 No.1563 Same Degree
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-26 13:03:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-06-25 10:08:11
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 147 ms
76,840 KB
testcase_02 AC 146 ms
77,052 KB
testcase_03 AC 150 ms
76,544 KB
testcase_04 AC 151 ms
76,672 KB
testcase_05 AC 164 ms
77,164 KB
testcase_06 AC 235 ms
78,632 KB
testcase_07 AC 223 ms
78,208 KB
testcase_08 AC 233 ms
78,088 KB
testcase_09 AC 229 ms
77,812 KB
testcase_10 AC 231 ms
78,140 KB
testcase_11 AC 101 ms
81,860 KB
testcase_12 AC 137 ms
84,640 KB
testcase_13 AC 258 ms
88,576 KB
testcase_14 AC 284 ms
88,108 KB
testcase_15 AC 208 ms
87,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = map(int, input().split())
    G = [[] for i in range(n)]
    for _ in range(m):
        u, v = map(int, input().split())
        G[u - 1].append(v - 1)
        G[v - 1].append(u - 1)
    s = set([len(G[i]) for i in range(n)])
    print("Yes" if n - len(s) else "No")
0