結果

問題 No.1563 Same Degree
ユーザー googol_S0googol_S0
提出日時 2021-06-26 13:37:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-06-25 10:25:59
合計ジャッジ時間 3,092 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 134 ms
76,200 KB
testcase_02 AC 129 ms
76,672 KB
testcase_03 AC 135 ms
76,544 KB
testcase_04 AC 134 ms
76,936 KB
testcase_05 AC 138 ms
76,800 KB
testcase_06 AC 178 ms
77,312 KB
testcase_07 AC 172 ms
77,440 KB
testcase_08 AC 170 ms
77,628 KB
testcase_09 AC 173 ms
77,696 KB
testcase_10 AC 174 ms
77,440 KB
testcase_11 AC 75 ms
76,968 KB
testcase_12 AC 90 ms
77,048 KB
testcase_13 AC 134 ms
76,928 KB
testcase_14 AC 147 ms
76,800 KB
testcase_15 AC 119 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  N,M=map(int,input().split())
  C=[0]*N
  for i in range(M):
    a,b=map(int,input().split())
    C[a-1]+=1
    C[b-1]+=1
  if len(set(C))==N:
    print('No')
  else:
    print('Yes')

for t in range(int(input())):
  solve()
0