結果

問題 No.1563 Same Degree
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-13 18:31:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 80,040 KB
最終ジャッジ日時 2024-07-02 14:22:26
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,240 KB
testcase_01 AC 63 ms
77,080 KB
testcase_02 AC 67 ms
76,936 KB
testcase_03 AC 65 ms
76,936 KB
testcase_04 AC 67 ms
77,240 KB
testcase_05 AC 67 ms
76,664 KB
testcase_06 AC 87 ms
76,592 KB
testcase_07 AC 79 ms
76,764 KB
testcase_08 AC 80 ms
76,616 KB
testcase_09 AC 79 ms
76,808 KB
testcase_10 AC 81 ms
76,484 KB
testcase_11 AC 45 ms
65,700 KB
testcase_12 AC 49 ms
71,704 KB
testcase_13 AC 64 ms
79,164 KB
testcase_14 AC 69 ms
80,040 KB
testcase_15 AC 60 ms
78,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

t = int(input())
for _ in range(t):
    n, m = map(int, input().split())
    ind = [0]*n
    for i in range(m):
        a, b = map(int, input().split())
        a, b = a-1, b-1
        ind[a] += 1
        ind[b] += 1
    if len(set(ind)) == len(ind):
        print('No')
    else:
        print('Yes')
0