結果

問題 No.11 カードマッチ
ユーザー DialBirdDialBird
提出日時 2017-02-12 19:10:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-06-09 10:05:52
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,032 KB
testcase_01 AC 82 ms
12,032 KB
testcase_02 AC 81 ms
11,904 KB
testcase_03 AC 87 ms
11,904 KB
testcase_04 AC 98 ms
18,432 KB
testcase_05 AC 90 ms
11,776 KB
testcase_06 AC 110 ms
27,648 KB
testcase_07 AC 93 ms
17,152 KB
testcase_08 AC 94 ms
20,096 KB
testcase_09 AC 103 ms
27,648 KB
testcase_10 AC 97 ms
24,448 KB
testcase_11 AC 96 ms
23,296 KB
testcase_12 AC 96 ms
23,936 KB
testcase_13 AC 102 ms
22,912 KB
testcase_14 AC 95 ms
17,792 KB
testcase_15 AC 84 ms
11,904 KB
testcase_16 AC 84 ms
12,416 KB
testcase_17 AC 84 ms
12,288 KB
testcase_18 AC 83 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

W = gets.to_i
H = gets.to_i
N = gets.to_i

w_list = Array.new(W, false)
h_list = Array.new(H, false)

N.times do
  s,k = gets.chomp.split.map(&:to_i)
  w_list[s - 1] = true
  h_list[k - 1] = true
end

w_not_used_count = w_list.count(false)
h_not_used_count = h_list.count(false)

puts (W * H) - (w_not_used_count * h_not_used_count) - N
0