結果

問題 No.1563 Same Degree
ユーザー HAGI_TARO
提出日時 2021-08-26 09:20:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 97,288 KB
最終ジャッジ日時 2024-11-17 23:15:50
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    tmp = []
    n,m = map(int,input().split())
    for j in range(m):
        tmp.append(list(map(int,input().split())))
    if n != 1:
        print("Yes")
    else:
        print("No")
0