結果

問題 No.673 カブトムシ
ユーザー yuruhiyayuruhiya
提出日時 2020-09-17 16:59:17
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-22 06:39:27
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 87 ms
12,416 KB
testcase_05 AC 91 ms
12,288 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 89 ms
12,416 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 WA -
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 89 ms
12,288 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 89 ms
12,288 KB
testcase_16 AC 90 ms
12,160 KB
testcase_17 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
		@@mod
	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

b, c, d = gets.split.map(&:to_i)
if c == 1
	puts b * d
else
	puts (ModInt.new(c) ** d.succ - c) / (c - 1) * b
end
0