結果

問題 No.1563 Same Degree
ユーザー tobusakanatobusakana
提出日時 2022-11-27 16:18:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 86,404 KB
最終ジャッジ日時 2024-10-04 05:38:01
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,388 KB
testcase_01 AC 84 ms
76,464 KB
testcase_02 AC 84 ms
76,860 KB
testcase_03 AC 88 ms
76,800 KB
testcase_04 AC 92 ms
76,316 KB
testcase_05 AC 92 ms
76,852 KB
testcase_06 AC 128 ms
77,468 KB
testcase_07 AC 123 ms
77,064 KB
testcase_08 AC 121 ms
77,344 KB
testcase_09 AC 122 ms
77,204 KB
testcase_10 AC 121 ms
77,252 KB
testcase_11 AC 65 ms
81,804 KB
testcase_12 AC 73 ms
81,868 KB
testcase_13 AC 127 ms
86,404 KB
testcase_14 AC 140 ms
85,992 KB
testcase_15 AC 107 ms
84,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

T = int(readline())
for _ in range(T):
    N,M = map(int,readline().split())
    G = [[] for i in range(N)]
    for _ in range(M):
        u,v = map(int,readline().split())
        G[u - 1].append(v - 1)
        G[v - 1].append(u - 1)
    cnt = set()
    for v in range(N):
        if len(G[v]) in cnt:
            print("Yes")
            break
        cnt.add(len(G[v]))
    else:
        print("No")
    
0