結果

問題 No.1563 Same Degree
ユーザー titan23titan23
提出日時 2022-06-29 02:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-11-21 21:44:35
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 99 ms
75,904 KB
testcase_02 AC 103 ms
75,520 KB
testcase_03 AC 101 ms
76,288 KB
testcase_04 AC 104 ms
75,904 KB
testcase_05 AC 102 ms
75,904 KB
testcase_06 AC 117 ms
76,672 KB
testcase_07 AC 113 ms
76,544 KB
testcase_08 AC 113 ms
76,672 KB
testcase_09 AC 113 ms
76,544 KB
testcase_10 AC 114 ms
76,928 KB
testcase_11 AC 88 ms
81,920 KB
testcase_12 AC 98 ms
81,536 KB
testcase_13 AC 156 ms
85,760 KB
testcase_14 AC 165 ms
87,168 KB
testcase_15 AC 133 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

def main():
  n, m = map(int, input().split())
  G = [[] for _ in range(n)]
  for _ in range(m):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)
  if n == 1:
    return 'No'
  else:
    return 'Yes'


print('\n'.join(str(main()) for _ in range(int(input()))))
0