結果

問題 No.1563 Same Degree
ユーザー FromBooskaFromBooska
提出日時 2023-06-18 19:38:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,484 KB
最終ジャッジ日時 2024-06-26 08:45:32
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 164 ms
77,348 KB
testcase_02 AC 164 ms
77,184 KB
testcase_03 AC 158 ms
77,696 KB
testcase_04 AC 162 ms
77,184 KB
testcase_05 AC 163 ms
77,312 KB
testcase_06 AC 233 ms
78,284 KB
testcase_07 AC 234 ms
78,484 KB
testcase_08 AC 242 ms
78,124 KB
testcase_09 AC 231 ms
78,448 KB
testcase_10 AC 231 ms
78,088 KB
testcase_11 AC 88 ms
77,192 KB
testcase_12 AC 103 ms
77,264 KB
testcase_13 AC 156 ms
77,440 KB
testcase_14 AC 166 ms
77,312 KB
testcase_15 AC 135 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

T = int(input())
for t in range(T):
    N, M = map(int, input().split())
    deg = [0]*N
    for i in range(M):
        u, v = map(int, input().split())
        deg[u-1] += 1
        deg[v-1] += 1
    counted = Counter(deg)
    mx = max(counted.values())
    if mx > 1:
        print('Yes')
    else:
        print('No')
0