結果

問題 No.1390 Get together
ユーザー masashi0217masashi0217
提出日時 2021-03-23 03:47:16
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 45,568 KB
最終ジャッジ日時 2024-05-03 16:13:30
合計ジャッジ時間 15,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,416 KB
testcase_01 AC 82 ms
12,416 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 91 ms
13,440 KB
testcase_04 AC 88 ms
12,928 KB
testcase_05 WA -
testcase_06 AC 86 ms
12,928 KB
testcase_07 WA -
testcase_08 AC 88 ms
12,672 KB
testcase_09 AC 93 ms
13,696 KB
testcase_10 AC 74 ms
12,160 KB
testcase_11 AC 73 ms
12,416 KB
testcase_12 AC 76 ms
12,160 KB
testcase_13 WA -
testcase_14 AC 78 ms
12,416 KB
testcase_15 AC 77 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 678 ms
40,704 KB
testcase_18 AC 581 ms
43,488 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 723 ms
40,832 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 718 ms
41,088 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)
arr = n.times.map{gets.chomp.split(" ").map(&:to_i)}
hash = Hash.new { |i,j| hash[j] = [] }
arr.each do |x,y|
    hash[y] << x
end
ans = 0
hash.each do |color,box|
    hash_count = Hash.new(0)
    box.each do |i|
        hash_count[i] += 1
    end
    an = hash_count.sort_by{|a,b| b}
    many = an.pop
    ans += (box.size-many[1])
end
puts ans
0