結果

問題 No.11 カードマッチ
ユーザー zazaboonzazaboon
提出日時 2017-02-05 13:24:01
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-06-06 14:28:45
合計ジャッジ時間 11,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 3,942 ms
18,304 KB
testcase_05 AC 75 ms
12,032 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

w = gets.to_i
h = gets.to_i
n = gets.to_i
t = []
n.times do 
  t.push(gets.chomp.split(" ").map(&:to_i))
end
a = 0
m = []
mm = []
w.times do |d|
  p = h - t.map{|u|u[0]}.count(d+1)
  unless(p == h) 
    a += p 
    m.push(d)
    mm.push(t.map{|u|u[1]})
  end 
end
m.uniq!
mm = mm.flatten.uniq
a += mm.size * (w - m.size) 
p a
0