結果

問題 No.1092 modular arithmetic
ユーザー yuruhiyayuruhiya
提出日時 2020-08-01 17:06:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-07-08 02:53:48
合計ジャッジ時間 9,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 218 ms
28,032 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 240 ms
27,520 KB
testcase_04 AC 216 ms
24,960 KB
testcase_05 AC 217 ms
24,960 KB
testcase_06 AC 177 ms
20,608 KB
testcase_07 AC 215 ms
24,576 KB
testcase_08 AC 240 ms
26,368 KB
testcase_09 AC 211 ms
24,320 KB
testcase_10 AC 195 ms
21,120 KB
testcase_11 AC 211 ms
21,504 KB
testcase_12 AC 173 ms
20,608 KB
testcase_13 AC 182 ms
23,680 KB
testcase_14 AC 201 ms
25,600 KB
testcase_15 AC 104 ms
14,464 KB
testcase_16 AC 176 ms
20,864 KB
testcase_17 AC 201 ms
25,984 KB
testcase_18 AC 241 ms
27,392 KB
testcase_19 AC 177 ms
20,736 KB
testcase_20 AC 246 ms
27,392 KB
testcase_21 AC 209 ms
23,936 KB
testcase_22 AC 234 ms
27,008 KB
testcase_23 AC 283 ms
21,248 KB
testcase_24 AC 143 ms
14,720 KB
testcase_25 AC 231 ms
20,736 KB
testcase_26 AC 285 ms
21,248 KB
testcase_27 AC 107 ms
13,184 KB
testcase_28 AC 233 ms
20,736 KB
testcase_29 AC 324 ms
26,368 KB
testcase_30 AC 231 ms
20,864 KB
testcase_31 AC 96 ms
13,312 KB
testcase_32 AC 215 ms
19,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:84: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

class ModInt
	@@mod = 1_000_000_007

	def initialize(n)
		@n = n.to_i % @@mod
	end

	def self.zero
		ModInt.new(0)
	end

	def self.mod=(m)
		@@mod = m.to_i
	end

	def +@
		self
	end

	def -@
		ModInt.new(n != 0 ? @@mod - @n : 0)
	end

	def +(m)
		ModInt.new(@n + m.to_i % @@mod)
	end

	def -(m)
		ModInt.new(@n - m.to_i % @@mod)
	end

	def *(m)
		ModInt.new(@n * m.to_i % @@mod)
	end

	def /(m)
		raise DivisionByZeroError.new if m == 0
		a, b, u, v = m.to_i, @@mod, 1, 0
		while b != 0
			t = a / b
			a -= t * b
			a, b = b, a
			u -= t * v
			u, v = v, u
		end
		ModInt.new(@n * u)
	end

	def **(m)
		t, res = self, ModInt.new(1)
		while m > 0
			res *= t if m.odd?
			t *= t
			m >>= 1
		end
		res
	end

	def ==(m)
		@n == m.to_i
	end

	def !=(m)
		@n != m.to_i
	end

	def succ
		self + 1
	end

	def pred
		self - 1
	end

	def to_i
		@n
	end

	def to_s
		@n.to_s
	end
end

ModInt.mod, n = gets.split.map &:to_i
a = gets.split.map { |i| ModInt.new(i) }
s = gets.chomp
puts s.size.times.reduce(a.first) { |x, i|
		case s[i]
		when '+'
			x + a[i + 1]
		when '-'
			x - a[i + 1]
		when '*'
			x * a[i + 1]
		else
			x / a[i + 1]
		end
     }
0