結果

問題 No.1563 Same Degree
ユーザー PSL24251284PSL24251284
提出日時 2021-06-26 16:07:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 1,187 ms
コンパイル使用メモリ 87,020 KB
実行使用メモリ 79,380 KB
最終ジャッジ日時 2023-09-07 17:02:58
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,256 KB
testcase_01 AC 151 ms
77,484 KB
testcase_02 AC 153 ms
77,624 KB
testcase_03 AC 145 ms
77,584 KB
testcase_04 AC 149 ms
77,696 KB
testcase_05 AC 159 ms
77,824 KB
testcase_06 AC 206 ms
79,380 KB
testcase_07 AC 206 ms
79,216 KB
testcase_08 AC 200 ms
78,884 KB
testcase_09 AC 205 ms
78,760 KB
testcase_10 AC 203 ms
79,244 KB
testcase_11 AC 107 ms
77,112 KB
testcase_12 AC 116 ms
77,256 KB
testcase_13 AC 150 ms
77,128 KB
testcase_14 AC 159 ms
77,224 KB
testcase_15 AC 137 ms
77,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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