結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 WA -
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 133 ms
17,920 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 151 ms
20,096 KB
testcase_07 AC 85 ms
12,288 KB
testcase_08 AC 111 ms
15,488 KB
testcase_09 AC 153 ms
19,840 KB
testcase_10 AC 133 ms
18,048 KB
testcase_11 AC 124 ms
17,152 KB
testcase_12 AC 124 ms
17,152 KB
testcase_13 AC 114 ms
16,000 KB
testcase_14 AC 121 ms
16,384 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 81 ms
12,032 KB
testcase_17 AC 82 ms
12,032 KB
testcase_18 AC 82 ms
12,288 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+1)
tt.fill(0)
t.map{|u|u[0]}.each do |d|
  tt[d] += 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