結果

問題 No.988 N×Mマス計算(総和)
ユーザー horiesinitihoriesiniti
提出日時 2023-02-05 15:58:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-07-04 04:42:22
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 84 ms
12,288 KB
testcase_09 AC 85 ms
12,288 KB
testcase_10 AC 122 ms
14,336 KB
testcase_11 AC 122 ms
19,456 KB
testcase_12 AC 177 ms
22,784 KB
testcase_13 AC 117 ms
17,664 KB
testcase_14 AC 116 ms
17,792 KB
testcase_15 AC 115 ms
12,544 KB
testcase_16 AC 151 ms
18,304 KB
testcase_17 AC 162 ms
19,200 KB
testcase_18 AC 124 ms
19,072 KB
testcase_19 AC 156 ms
21,376 KB
testcase_20 AC 202 ms
23,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m,k=gets.split(" ").map{|e| e.to_i}
xs=gets.chomp.split(" ")
op=xs.shift
s1=xs.map{|e| e.to_i}.sum
ans=0
if op=="+" then
	n.times{
		ans+=s1+gets.to_i*m
	}
else
	n.times{
		ans+=gets.to_i*s1
	}
end
puts ans%k
0