結果

問題 No.1563 Same Degree
ユーザー 👑 NachiaNachia
提出日時 2021-06-26 13:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 78,860 KB
最終ジャッジ日時 2023-09-07 16:15:35
合計ジャッジ時間 3,786 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,324 KB
testcase_01 AC 141 ms
77,600 KB
testcase_02 AC 141 ms
77,612 KB
testcase_03 AC 140 ms
77,548 KB
testcase_04 AC 142 ms
77,516 KB
testcase_05 AC 150 ms
78,432 KB
testcase_06 AC 196 ms
78,696 KB
testcase_07 AC 202 ms
78,692 KB
testcase_08 AC 201 ms
78,860 KB
testcase_09 AC 197 ms
78,740 KB
testcase_10 AC 194 ms
78,640 KB
testcase_11 AC 103 ms
77,112 KB
testcase_12 AC 111 ms
77,120 KB
testcase_13 AC 139 ms
77,112 KB
testcase_14 AC 143 ms
77,280 KB
testcase_15 AC 129 ms
77,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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