結果

問題 No.11 カードマッチ
ユーザー zazaboonzazaboon
提出日時 2017-02-05 13:32:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-06-06 14:28:31
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 84 ms
12,032 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 135 ms
18,048 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 157 ms
20,096 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 115 ms
15,488 KB
testcase_09 AC 155 ms
19,968 KB
testcase_10 AC 136 ms
18,176 KB
testcase_11 AC 128 ms
16,896 KB
testcase_12 AC 127 ms
17,024 KB
testcase_13 AC 118 ms
16,000 KB
testcase_14 AC 123 ms
16,640 KB
testcase_15 AC 83 ms
12,160 KB
testcase_16 AC 84 ms
12,288 KB
testcase_17 AC 82 ms
12,416 KB
testcase_18 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
tt = Array.new(w)
tt.fill(0)
t.map{|u|u[0]}.each do |d|
  tt[d-1] += 1
end 
a = 0
m = []
mm = []
w.times do |d|
  unless(tt[d] == 0)
    p = h - tt[d]
    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