結果

問題 No.988 N×Mマス計算(総和)
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2020-02-15 18:31:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-07-06 07:22:54
合計ジャッジ時間 3,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,288 KB
testcase_01 AC 70 ms
12,288 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 76 ms
12,032 KB
testcase_04 AC 72 ms
12,288 KB
testcase_05 AC 74 ms
12,160 KB
testcase_06 AC 72 ms
12,288 KB
testcase_07 AC 71 ms
12,160 KB
testcase_08 AC 72 ms
12,288 KB
testcase_09 AC 70 ms
12,288 KB
testcase_10 AC 101 ms
14,720 KB
testcase_11 AC 104 ms
18,688 KB
testcase_12 AC 143 ms
23,168 KB
testcase_13 AC 104 ms
17,408 KB
testcase_14 AC 101 ms
17,024 KB
testcase_15 AC 103 ms
12,672 KB
testcase_16 AC 133 ms
18,944 KB
testcase_17 AC 149 ms
19,456 KB
testcase_18 AC 105 ms
18,560 KB
testcase_19 AC 138 ms
21,632 KB
testcase_20 AC 166 ms
23,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M, K = gets.split.map(&:to_i)
op, *cols = gets.split
op = op.to_sym
B = cols.map{|b| b.to_i % K }
A = N.times.map{ gets.to_i % K }
sumb = B.sum % K
suma = A.sum % K
if op == :+
  puts (sumb * N + suma * M) % K
else
  puts (sumb * suma) % K
end

0