結果

問題 No.988 N×Mマス計算(総和)
ユーザー c-yanc-yan
提出日時 2020-07-31 01:08:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-07-06 08:03:30
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 AC 74 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 96 ms
16,128 KB
testcase_11 AC 106 ms
19,456 KB
testcase_12 AC 126 ms
22,912 KB
testcase_13 AC 104 ms
17,024 KB
testcase_14 AC 102 ms
16,768 KB
testcase_15 AC 101 ms
16,384 KB
testcase_16 AC 116 ms
20,864 KB
testcase_17 AC 126 ms
22,784 KB
testcase_18 AC 104 ms
18,432 KB
testcase_19 AC 121 ms
22,272 KB
testcase_20 AC 144 ms
26,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=$<.read.split
n,m,k=a.shift(3).map &:to_i
o=a.shift
b=a.shift(m).map &:to_i
a=a.map &:to_i
s=a.sum
t=b.sum
p (o=='+'?m*s+n*t:s*t)%k
0