結果
問題 | No.11 カードマッチ |
ユーザー | DialBird |
提出日時 | 2016-11-15 21:55:33 |
言語 | Ruby (3.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 43 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 1,526,272 KB |
最終ジャッジ日時 | 2024-11-26 01:54:09 |
合計ジャッジ時間 | 34,523 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 77 ms
18,852 KB |
testcase_01 | AC | 80 ms
12,032 KB |
testcase_02 | AC | 85 ms
12,032 KB |
testcase_03 | AC | 85 ms
12,288 KB |
testcase_04 | MLE | - |
testcase_05 | AC | 101 ms
12,032 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | AC | 2,173 ms
206,848 KB |
testcase_16 | MLE | - |
testcase_17 | TLE | - |
testcase_18 | MLE | - |
コンパイルメッセージ
Syntax OK
ソースコード
def main w = gets.to_i h = gets.to_i n = gets.to_i cards = Array.new(h){Array.new(w, 0)} n.times do s,k = gets.split.map(&:to_i) cards[k-1][s-1] = 2 (0...h).each do |_h| cards[_h][s-1] = 1 if cards[_h][s-1] != 2 end (0...w).each do |_w| cards[k-1][_w] = 1 if cards[k-1][_w] != 2 end cards[k-1][s-1] = 2 end puts cards.flatten.count {|c| c == 1 } end main()