結果

問題 No.1563 Same Degree
ユーザー H20H20
提出日時 2021-06-27 16:04:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 78,936 KB
最終ジャッジ日時 2024-06-25 11:48:52
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 136 ms
77,312 KB
testcase_02 AC 141 ms
77,440 KB
testcase_03 AC 144 ms
77,092 KB
testcase_04 AC 138 ms
76,928 KB
testcase_05 AC 153 ms
77,152 KB
testcase_06 AC 227 ms
78,000 KB
testcase_07 AC 232 ms
78,936 KB
testcase_08 AC 230 ms
77,844 KB
testcase_09 AC 225 ms
77,932 KB
testcase_10 AC 232 ms
78,444 KB
testcase_11 AC 83 ms
77,312 KB
testcase_12 AC 98 ms
77,440 KB
testcase_13 AC 141 ms
77,440 KB
testcase_14 AC 150 ms
77,232 KB
testcase_15 AC 124 ms
77,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
T = int(input())
for _ in range(T):
    N,M = map(int, input().split())
    L = [0]*N
    for _ in range(M):
        a,b = map(int, input().split())
        L[a-1]+=1
        L[b-1]+=1
    C = collections.Counter(L)
    for v in C.values():
        if v>=2:
            print('Yes')
            break
    else:
        print('No')
0