結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | gemmaro |
提出日時 | 2020-02-14 21:50:46 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 523 bytes |
コンパイル時間 | 555 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 134,400 KB |
最終ジャッジ日時 | 2024-10-06 11:21:05 |
合計ジャッジ時間 | 4,927 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
17,280 KB |
testcase_01 | AC | 81 ms
12,160 KB |
testcase_02 | AC | 85 ms
12,032 KB |
testcase_03 | AC | 86 ms
12,032 KB |
testcase_04 | AC | 78 ms
12,160 KB |
testcase_05 | AC | 81 ms
12,032 KB |
testcase_06 | AC | 83 ms
12,288 KB |
testcase_07 | AC | 85 ms
12,032 KB |
testcase_08 | AC | 82 ms
12,032 KB |
testcase_09 | AC | 83 ms
12,032 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true N, M, K = gets.chomp.split.map(&:to_i) ROW = gets.chomp.split OP = ROW[0].intern BS = ROW[1..-1].map(&:to_i) AS = N.times.map do gets.to_i end count_a = AS.filter { |a| a >= K }.size count_b = BS.filter { |b| b >= K }.size COUNT = count_a * M + count_b * N - count_a * count_b CS = AS.reject { |a| a >= K }.map do |a| BS.reject { |b| b >= K }.map do |b| case OP when :+ a + b when :* a * b end end end puts(CS.flatten.filter { |c| c >= K }.size + COUNT)