結果

問題 No.1092 modular arithmetic
ユーザー 小野寺健小野寺健
提出日時 2021-11-05 09:43:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-10-15 18:16:43
合計ジャッジ時間 9,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 172 ms
22,144 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 244 ms
21,120 KB
testcase_04 AC 218 ms
18,048 KB
testcase_05 AC 224 ms
18,176 KB
testcase_06 AC 184 ms
15,488 KB
testcase_07 AC 214 ms
18,176 KB
testcase_08 AC 227 ms
20,224 KB
testcase_09 AC 216 ms
18,176 KB
testcase_10 AC 198 ms
18,048 KB
testcase_11 AC 207 ms
18,048 KB
testcase_12 AC 182 ms
15,488 KB
testcase_13 AC 152 ms
18,176 KB
testcase_14 AC 162 ms
19,968 KB
testcase_15 AC 107 ms
13,440 KB
testcase_16 AC 143 ms
17,408 KB
testcase_17 AC 159 ms
20,096 KB
testcase_18 AC 247 ms
20,736 KB
testcase_19 AC 179 ms
15,616 KB
testcase_20 AC 248 ms
21,248 KB
testcase_21 AC 215 ms
18,176 KB
testcase_22 AC 240 ms
20,480 KB
testcase_23 AC 384 ms
17,920 KB
testcase_24 AC 178 ms
13,824 KB
testcase_25 AC 314 ms
15,616 KB
testcase_26 AC 371 ms
18,176 KB
testcase_27 AC 132 ms
12,544 KB
testcase_28 AC 312 ms
15,616 KB
testcase_29 AC 436 ms
20,352 KB
testcase_30 AC 312 ms
15,744 KB
testcase_31 AC 121 ms
12,544 KB
testcase_32 AC 290 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Mod
	def initialize(m)
		@MOD = m
	end
	def modPow(x, n)
		res = 1
		while n > 0 do
			res = res * x % @MOD if n & 1 != 0
			x = x * x % @MOD
			n >>= 1
		end
		res
	end
	def modInv(x)
		modPow(x, @MOD - 2)
	end
end

P, N = gets.split(" ").map{|s| s.to_i}
A = gets.split(" ").map{|s| s.to_i}
S = gets.strip

ans = A[0]

mod = Mod.new(P)

0.upto(N-2) {|i|
	x = A[i+1]
	case S[i]
	when "+" then
		ans = (ans + x) % P
	when "-" then
		ans = (ans - x) % P
	when "*" then
		ans = (ans * x) % P
	when "/" then
		ans = (ans * mod.modInv(x)) % P
	end
}

puts ans
0