結果

問題 No.1563 Same Degree
ユーザー simansiman
提出日時 2021-06-27 10:44:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-06-25 11:09:31
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 124 ms
14,720 KB
testcase_12 AC 169 ms
15,488 KB
testcase_13 AC 322 ms
18,560 KB
testcase_14 AC 355 ms
18,304 KB
testcase_15 AC 269 ms
18,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

T = gets.to_i

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

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

  vs = counter.values

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