結果

問題 No.1563 Same Degree
ユーザー miya145592miya145592
提出日時 2023-05-07 03:22:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 88,496 KB
最終ジャッジ日時 2024-05-03 07:54:57
合計ジャッジ時間 4,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,096 KB
testcase_01 AC 129 ms
76,728 KB
testcase_02 AC 127 ms
76,764 KB
testcase_03 AC 122 ms
77,144 KB
testcase_04 AC 131 ms
77,036 KB
testcase_05 AC 153 ms
77,880 KB
testcase_06 AC 184 ms
77,224 KB
testcase_07 AC 207 ms
77,420 KB
testcase_08 AC 212 ms
78,272 KB
testcase_09 AC 208 ms
77,852 KB
testcase_10 AC 193 ms
77,516 KB
testcase_11 AC 94 ms
81,668 KB
testcase_12 AC 118 ms
84,808 KB
testcase_13 AC 204 ms
88,420 KB
testcase_14 AC 217 ms
88,496 KB
testcase_15 AC 172 ms
86,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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