結果

問題 No.1390 Get together
ユーザー masashi0217masashi0217
提出日時 2021-03-22 07:11:06
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 40,960 KB
最終ジャッジ日時 2024-05-02 21:12:13
合計ジャッジ時間 14,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,160 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 98 ms
12,288 KB
testcase_04 AC 96 ms
12,416 KB
testcase_05 WA -
testcase_06 AC 96 ms
12,288 KB
testcase_07 WA -
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 96 ms
12,544 KB
testcase_10 AC 86 ms
12,032 KB
testcase_11 AC 86 ms
12,160 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 WA -
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 91 ms
12,032 KB
testcase_16 AC 711 ms
31,360 KB
testcase_17 AC 736 ms
37,504 KB
testcase_18 AC 690 ms
34,688 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 772 ms
40,960 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 749 ms
40,960 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split(" ").map(&:to_i)
hash = Hash.new(0)
count = 0
arr = []
n.times do
    b, c = gets.chomp.split(" ").map(&:to_i)
    arr << [b,c]
    # count += 1 if hash[c] >= 1
    # count -= 1 if iru[c] == b && hash[c] >= 1
    # iru[c] = b
    # hash[c] += 1
end
arr = arr.uniq

arr.each do |i,j|
    count += 1 if hash[j] >= 1
    hash[j] += 1
end
puts count
0