結果

問題 No.1563 Same Degree
ユーザー titiatitia
提出日時 2024-11-30 00:20:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-11-30 00:20:24
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 283 ms
10,624 KB
testcase_02 AC 309 ms
10,752 KB
testcase_03 AC 280 ms
10,624 KB
testcase_04 AC 279 ms
10,624 KB
testcase_05 AC 287 ms
10,624 KB
testcase_06 AC 302 ms
10,624 KB
testcase_07 AC 277 ms
10,624 KB
testcase_08 AC 282 ms
10,624 KB
testcase_09 AC 281 ms
10,624 KB
testcase_10 AC 296 ms
10,624 KB
testcase_11 AC 99 ms
11,392 KB
testcase_12 AC 177 ms
11,392 KB
testcase_13 AC 443 ms
11,392 KB
testcase_14 AC 541 ms
11,136 KB
testcase_15 AC 351 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

T=int(input())
for tests in range(T):
    N,M=map(int,input().split())

    D=[0]*N
    for i in range(M):
        x,y=map(int,input().split())
        D[x-1]+=1
        D[y-1]+=1

    C=Counter(D)

    flag=0
    for c in C:
        if C[c]>=2:
            flag=1

    if flag==1:
        print("Yes")
    else:
        print("No")
    
0