結果

問題 No.1563 Same Degree
ユーザー kept1994kept1994
提出日時 2022-04-29 04:24:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 77,508 KB
最終ジャッジ日時 2024-06-28 12:03:36
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 129 ms
76,484 KB
testcase_02 AC 120 ms
76,760 KB
testcase_03 AC 119 ms
76,160 KB
testcase_04 AC 119 ms
76,416 KB
testcase_05 AC 134 ms
76,568 KB
testcase_06 AC 168 ms
77,312 KB
testcase_07 AC 169 ms
77,316 KB
testcase_08 AC 169 ms
77,104 KB
testcase_09 AC 168 ms
77,184 KB
testcase_10 AC 165 ms
77,508 KB
testcase_11 AC 75 ms
75,904 KB
testcase_12 AC 84 ms
75,904 KB
testcase_13 AC 122 ms
75,984 KB
testcase_14 AC 130 ms
76,032 KB
testcase_15 AC 110 ms
76,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

MOD = 998244353

def main():
    T = int(input())

    for i in range(T):
        N, M = map(int, input().split())
        for _ in range(M):
            u, v = map(int, input().split())
        if N == 1:
            print("No")
        else:
            print("Yes")
    return

    

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