結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | shi-mo |
提出日時 | 2020-09-29 23:42:05 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 220 bytes |
コンパイル時間 | 46 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 20,096 KB |
最終ジャッジ日時 | 2024-07-04 18:36:24 |
合計ジャッジ時間 | 5,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
17,536 KB |
testcase_01 | AC | 83 ms
12,288 KB |
testcase_02 | AC | 90 ms
12,032 KB |
testcase_03 | AC | 87 ms
12,160 KB |
testcase_04 | AC | 83 ms
12,160 KB |
testcase_05 | AC | 91 ms
12,032 KB |
testcase_06 | AC | 89 ms
12,160 KB |
testcase_07 | AC | 88 ms
12,288 KB |
testcase_08 | AC | 86 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 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
n, m, k = gets.split.map(&:to_i) op, *b = gets.chomp.split b.map!(&:to_i) a = [] n.times{ a << gets.to_i } sum = 0 n.times do |i| m.times do |j| sum += [a[i], b[j]].inject(:"#{op}") sum %= k end end puts sum