結果

問題 No.1563 Same Degree
ユーザー rlangevinrlangevin
提出日時 2024-12-07 23:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-12-07 23:51:56
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 126 ms
76,528 KB
testcase_02 AC 122 ms
76,836 KB
testcase_03 AC 128 ms
76,776 KB
testcase_04 AC 124 ms
76,672 KB
testcase_05 AC 143 ms
76,800 KB
testcase_06 AC 160 ms
76,544 KB
testcase_07 AC 163 ms
77,408 KB
testcase_08 AC 170 ms
77,184 KB
testcase_09 AC 166 ms
76,544 KB
testcase_10 AC 182 ms
77,280 KB
testcase_11 AC 77 ms
76,728 KB
testcase_12 AC 91 ms
77,152 KB
testcase_13 AC 128 ms
76,924 KB
testcase_14 AC 143 ms
77,184 KB
testcase_15 AC 116 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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