結果

問題 No.1563 Same Degree
ユーザー ThetaTheta
提出日時 2023-01-27 19:34:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-28 04:53:16
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 271 ms
10,752 KB
testcase_02 AC 265 ms
10,496 KB
testcase_03 AC 263 ms
10,624 KB
testcase_04 AC 272 ms
10,752 KB
testcase_05 AC 258 ms
10,624 KB
testcase_06 AC 246 ms
10,624 KB
testcase_07 AC 245 ms
10,752 KB
testcase_08 AC 243 ms
10,624 KB
testcase_09 AC 245 ms
10,752 KB
testcase_10 AC 245 ms
10,624 KB
testcase_11 AC 94 ms
11,520 KB
testcase_12 AC 166 ms
11,264 KB
testcase_13 AC 428 ms
11,520 KB
testcase_14 AC 495 ms
11,264 KB
testcase_15 AC 335 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    for _ in range(int(input())):
        N, M = map(int, input().split())
        degrees = [0] * N
        for _ in range(M):
            dep, dest = map(int, input().split())
            degrees[dep-1] += 1
            degrees[dest-1] += 1

        if len(degrees) != len(set(degrees)):
            print("Yes")
        else:
            print("No")


if __name__ == "__main__":
    main()
0