結果

問題 No.1563 Same Degree
ユーザー 👑 rin204rin204
提出日時 2021-08-05 13:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 77,672 KB
最終ジャッジ日時 2024-09-16 15:19:51
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,396 KB
testcase_01 AC 106 ms
76,628 KB
testcase_02 AC 105 ms
76,324 KB
testcase_03 AC 107 ms
76,264 KB
testcase_04 AC 112 ms
76,252 KB
testcase_05 AC 116 ms
76,760 KB
testcase_06 AC 158 ms
77,024 KB
testcase_07 AC 164 ms
77,600 KB
testcase_08 AC 158 ms
77,432 KB
testcase_09 AC 161 ms
77,384 KB
testcase_10 AC 160 ms
77,672 KB
testcase_11 AC 69 ms
75,740 KB
testcase_12 AC 77 ms
76,088 KB
testcase_13 AC 105 ms
76,016 KB
testcase_14 AC 111 ms
76,088 KB
testcase_15 AC 95 ms
76,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = map(int, input().split())
    for _ in range(m): input()
    if n == 1:
        print("No")
    else:
        print("Yes")
0