結果

問題 No.1563 Same Degree
ユーザー nohakai3nohakai3
提出日時 2022-07-01 16:17:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-05-04 10:26:18
合計ジャッジ時間 7,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 320 ms
10,752 KB
testcase_02 AC 315 ms
10,752 KB
testcase_03 AC 311 ms
10,624 KB
testcase_04 AC 317 ms
10,752 KB
testcase_05 AC 313 ms
10,880 KB
testcase_06 AC 286 ms
10,752 KB
testcase_07 AC 275 ms
10,752 KB
testcase_08 AC 285 ms
10,880 KB
testcase_09 AC 285 ms
10,752 KB
testcase_10 AC 284 ms
10,624 KB
testcase_11 AC 153 ms
19,840 KB
testcase_12 AC 268 ms
22,656 KB
testcase_13 AC 669 ms
29,568 KB
testcase_14 AC 772 ms
31,104 KB
testcase_15 AC 535 ms
26,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())

for i in range(t):
    n, m = map(int, input().split())
    graph = [[] for _ in range(n)]
    for _ in range(m):
        a, b = map(int, input().split())
        graph[a-1].append(b-1)
        graph[b-1].append(a-1)  # 有向グラフなら消す
    l=[]
    if n==1:
        print("No")
    else:
        print("Yes")
        
0