結果

問題 No.2851 Make Pairs
ユーザー ducktailducktail
提出日時 2024-09-08 15:22:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-09-08 15:22:09
合計ジャッジ時間 4,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 335 ms
29,312 KB
testcase_03 AC 375 ms
30,080 KB
testcase_04 AC 361 ms
30,976 KB
testcase_05 AC 358 ms
31,232 KB
testcase_06 AC 386 ms
30,976 KB
testcase_07 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module MakePairs
  def solve(ct)
    ct.map{|x| x / 2}.sum
  end

  module_function :solve
end

n = gets.chomp.to_i
ct = Array.new(n + 1, 0)

gets.chomp.split(/\s+/).map(&:to_i).each do |i|
  ct[i] += 1
end
  
puts MakePairs.solve(ct)
0