結果

問題 No.1563 Same Degree
ユーザー HAGI_TAROHAGI_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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,456 KB
testcase_01 AC 148 ms
76,416 KB
testcase_02 AC 156 ms
76,544 KB
testcase_03 AC 143 ms
76,720 KB
testcase_04 AC 151 ms
76,672 KB
testcase_05 AC 149 ms
76,800 KB
testcase_06 AC 197 ms
77,076 KB
testcase_07 AC 192 ms
77,284 KB
testcase_08 AC 192 ms
76,928 KB
testcase_09 AC 197 ms
77,184 KB
testcase_10 AC 192 ms
76,928 KB
testcase_11 AC 85 ms
77,056 KB
testcase_12 AC 118 ms
82,048 KB
testcase_13 AC 202 ms
94,600 KB
testcase_14 AC 227 ms
97,288 KB
testcase_15 AC 164 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

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