結果

問題 No.1563 Same Degree
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-26 09:20:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 97,532 KB
最終ジャッジ日時 2024-04-29 01:19:06
合計ジャッジ時間 3,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 108 ms
76,504 KB
testcase_02 AC 111 ms
76,900 KB
testcase_03 AC 113 ms
76,580 KB
testcase_04 AC 119 ms
76,596 KB
testcase_05 AC 110 ms
76,348 KB
testcase_06 AC 157 ms
77,044 KB
testcase_07 AC 155 ms
76,860 KB
testcase_08 AC 151 ms
76,872 KB
testcase_09 AC 153 ms
76,824 KB
testcase_10 AC 154 ms
76,820 KB
testcase_11 AC 70 ms
77,384 KB
testcase_12 AC 87 ms
82,120 KB
testcase_13 AC 144 ms
94,344 KB
testcase_14 AC 156 ms
97,532 KB
testcase_15 AC 122 ms
90,240 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