結果

問題 No.11 カードマッチ
ユーザー DialBirdDialBird
提出日時 2016-11-16 10:27:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-11-26 02:10:56
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 93 ms
18,304 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 104 ms
27,520 KB
testcase_07 AC 93 ms
17,152 KB
testcase_08 AC 95 ms
20,224 KB
testcase_09 AC 102 ms
27,776 KB
testcase_10 AC 99 ms
24,576 KB
testcase_11 AC 99 ms
23,296 KB
testcase_12 AC 98 ms
23,680 KB
testcase_13 AC 97 ms
22,784 KB
testcase_14 AC 92 ms
17,792 KB
testcase_15 AC 87 ms
12,032 KB
testcase_16 AC 88 ms
12,544 KB
testcase_17 AC 89 ms
12,544 KB
testcase_18 AC 87 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:13: warning: assigned but unused variable - ans
Syntax OK

ソースコード

diff #

def main
  w = gets.to_i
  h = gets.to_i
  n = gets.to_i
  w_list = [nil]*(w+1)
  h_list = [nil]*(h+1)
  n.times do
    s,k = gets.split.map(&:to_i)
    w_list[s] = true if w_list[s].nil?
    h_list[k] = true if h_list[k].nil?
  end
  not_used = (w - (w_list.compact!.length)) * (h - (h_list.compact!.length))
  ans = w * h - not_used - n
end

puts main()
0