結果

問題 No.1563 Same Degree
ユーザー 👑 obakyanobakyan
提出日時 2021-06-28 23:34:52
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 5,216 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-08 00:05:35
合計ジャッジ時間 1,742 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 33 ms
4,380 KB
testcase_02 AC 32 ms
4,380 KB
testcase_03 AC 32 ms
4,380 KB
testcase_04 AC 33 ms
4,380 KB
testcase_05 AC 33 ms
4,380 KB
testcase_06 AC 32 ms
4,380 KB
testcase_07 AC 31 ms
4,376 KB
testcase_08 AC 32 ms
4,376 KB
testcase_09 AC 32 ms
4,380 KB
testcase_10 AC 32 ms
4,380 KB
testcase_11 AC 10 ms
4,376 KB
testcase_12 AC 19 ms
4,380 KB
testcase_13 AC 53 ms
4,376 KB
testcase_14 AC 60 ms
4,380 KB
testcase_15 AC 41 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local function solve()
  local n, m = io.read("*n", "*n")
  local c = {}
  for i = 1, n do
    c[i] = 0
  end
  for i = 1, m do
    local a, b = io.read("*n", "*n")
    c[a] = c[a] + 1
    c[b] = c[b] + 1
  end
  local box = {}
  for i = 1, n do
    local v = c[i]
    if box[v] then return true end
    box[v] = true
  end
  return false
end

local q = io.read("*n")
for iq = 1, q do
  print(solve() and "Yes" or "No")
end
0