結果

問題 No.988 N×Mマス計算(総和)
ユーザー gemmarogemmaro
提出日時 2020-02-14 21:30:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 317 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 11,568 KB
実行使用メモリ 15,372 KB
最終ジャッジ日時 2023-09-20 11:32:20
合計ジャッジ時間 4,861 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
15,312 KB
testcase_01 AC 84 ms
15,272 KB
testcase_02 AC 80 ms
15,148 KB
testcase_03 AC 82 ms
15,108 KB
testcase_04 AC 83 ms
15,260 KB
testcase_05 AC 83 ms
15,112 KB
testcase_06 AC 82 ms
15,372 KB
testcase_07 AC 82 ms
15,068 KB
testcase_08 AC 80 ms
15,148 KB
testcase_09 AC 81 ms
15,104 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# 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

CS = AS.map do |a|
  BS.map do |b|
    case OP
    when :+
      a + b
    when :*
      a * b
    end
  end.sum % K
end

puts(CS.sum % K)
0