結果

問題 No.1563 Same Degree
ユーザー 👑 rin204rin204
提出日時 2021-08-05 13:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 78,732 KB
最終ジャッジ日時 2023-10-14 21:35:36
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,328 KB
testcase_01 AC 135 ms
77,432 KB
testcase_02 AC 132 ms
77,492 KB
testcase_03 AC 132 ms
77,520 KB
testcase_04 AC 133 ms
77,484 KB
testcase_05 AC 142 ms
78,272 KB
testcase_06 AC 182 ms
78,732 KB
testcase_07 AC 189 ms
78,688 KB
testcase_08 AC 182 ms
78,632 KB
testcase_09 AC 185 ms
78,396 KB
testcase_10 AC 185 ms
78,568 KB
testcase_11 AC 97 ms
76,812 KB
testcase_12 AC 103 ms
77,072 KB
testcase_13 AC 130 ms
77,072 KB
testcase_14 AC 137 ms
77,032 KB
testcase_15 AC 122 ms
76,932 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