結果

問題 No.1563 Same Degree
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-11 17:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 87,632 KB
最終ジャッジ日時 2024-11-14 11:42:11
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,964 KB
testcase_01 AC 167 ms
76,784 KB
testcase_02 AC 164 ms
77,096 KB
testcase_03 AC 176 ms
76,992 KB
testcase_04 AC 176 ms
77,432 KB
testcase_05 AC 185 ms
77,608 KB
testcase_06 AC 259 ms
79,124 KB
testcase_07 AC 219 ms
77,808 KB
testcase_08 AC 234 ms
77,596 KB
testcase_09 AC 240 ms
78,992 KB
testcase_10 AC 250 ms
78,444 KB
testcase_11 AC 98 ms
80,972 KB
testcase_12 AC 131 ms
83,688 KB
testcase_13 AC 248 ms
87,632 KB
testcase_14 AC 315 ms
87,588 KB
testcase_15 AC 208 ms
86,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())

for i in range(t):
    n,m=map(int,input().split())
    ns=[[] for i in range(n+1)]
    s=set()
    for i in range(m):
        a,b=map(int,input().split())
        ns[a].append(b)
        ns[b].append(a)
    for i in range(1,n+1):
        s.add(len(ns[i]))
        if len(s) != i:
            print('Yes')
            break
    else:
        print('No')
0