結果

問題 No.1563 Same Degree
ユーザー 👑 KazunKazun
提出日時 2021-06-27 21:41:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 77,464 KB
最終ジャッジ日時 2024-06-25 11:56:03
合計ジャッジ時間 2,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 97 ms
76,948 KB
testcase_02 AC 95 ms
76,812 KB
testcase_03 AC 101 ms
77,300 KB
testcase_04 AC 105 ms
77,108 KB
testcase_05 AC 99 ms
77,040 KB
testcase_06 AC 112 ms
77,464 KB
testcase_07 AC 117 ms
77,300 KB
testcase_08 AC 111 ms
77,056 KB
testcase_09 AC 115 ms
77,164 KB
testcase_10 AC 116 ms
77,216 KB
testcase_11 AC 66 ms
73,856 KB
testcase_12 AC 80 ms
76,856 KB
testcase_13 AC 103 ms
77,056 KB
testcase_14 AC 103 ms
76,928 KB
testcase_15 AC 93 ms
76,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
input=sys.stdin.readline
write=sys.stdout.write\

T=int(input())
X=[0]*T
for case in range(T):
    N,M=map(int,input().split())
    deg=[0]*(N+1); deg[0]=-1

    for _ in range(M):
        u,v=map(int,input().split())
        deg[u]+=1
        deg[v]+=1

    C=defaultdict(int)
    for v in range(1,N+1):
        C[deg[v]]+=1

    if max(C.values())>=2:
        X[case]=1

write("\n".join(map(lambda x:"Yes" if x else "No",X)))
0