結果

問題 No.1563 Same Degree
ユーザー simansiman
提出日時 2021-06-27 10:49:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-25 11:09:38
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 209 ms
13,312 KB
testcase_02 AC 202 ms
13,568 KB
testcase_03 AC 211 ms
13,568 KB
testcase_04 AC 217 ms
13,312 KB
testcase_05 AC 214 ms
13,440 KB
testcase_06 AC 191 ms
12,288 KB
testcase_07 AC 191 ms
12,544 KB
testcase_08 AC 191 ms
12,416 KB
testcase_09 AC 190 ms
12,288 KB
testcase_10 AC 188 ms
12,544 KB
testcase_11 AC 122 ms
13,952 KB
testcase_12 AC 161 ms
14,080 KB
testcase_13 AC 280 ms
13,952 KB
testcase_14 AC 310 ms
13,952 KB
testcase_15 AC 238 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n, m = gets.split.map(&:to_i)
  counter = Array.new(n, 0)

  m.times do
    u, v = gets.split.map(&:to_i)
    counter[u - 1] += 1
    counter[v - 1] += 1
  end

  if counter.size != counter.uniq.size
    puts 'Yes'
  else
    puts 'No'
  end
end
0