結果

問題 No.1563 Same Degree
ユーザー wgrapewgrape
提出日時 2023-11-08 16:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-09-25 23:41:38
合計ジャッジ時間 4,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 186 ms
76,928 KB
testcase_02 AC 181 ms
76,928 KB
testcase_03 AC 184 ms
77,184 KB
testcase_04 AC 188 ms
77,568 KB
testcase_05 AC 194 ms
77,008 KB
testcase_06 AC 243 ms
78,428 KB
testcase_07 AC 251 ms
77,824 KB
testcase_08 AC 247 ms
78,732 KB
testcase_09 AC 248 ms
77,584 KB
testcase_10 AC 245 ms
78,412 KB
testcase_11 AC 107 ms
80,768 KB
testcase_12 AC 137 ms
83,584 KB
testcase_13 AC 240 ms
87,296 KB
testcase_14 AC 260 ms
87,296 KB
testcase_15 AC 206 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    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)
    cnt = set()
    for i in range(N):
        c = len(G[i])
        if c in cnt:
            print("Yes")
            break
        cnt.add(c)
    else:
        print("No")
0