AtCoder::ModInt167772161
Inherits Struct / Value / Object
Implements atcoder::modint167772161_i64.
alias Mint = AtCoder::ModInt167772161
Mint.new(30_i64) // Mint.new(7_i64)
Constants
MOD = 167772161_i64
Constructors
new(value : Int64 = 0_i64)
Sourcenew(value)
SourceClass methods
combination(n, k)
Sourcefactorial(n)
Sourcepermutation(n, k)
Sourcerepeated_combination(n, k)
Sourcezero
SourceInstance methods
*(value : self)
Source*(value)
Source**(value)
Source+(value : self)
Source+(value)
Source-(value : self)
Source-(value)
Source/(value : self)
Source/(value)
Source//(value)
Source<(value)
Source<<(value)
Source<=(value)
Source==(other : self)
Source==(other)
Returns true if this struct is equal to other.
Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4
p1 == p2 # => true
p1 == p3 # => false
>(value)
Source>=(value)
Sourceabs
Sourceclone
Sourceinspect(*args, **options)
inspect(*args, **options, &)
inv
Sourcepow(value)
Sourcepred
Sourcesqrt
Sourcesucc
Sourceto_i64
Sourceto_s(*args, **options)
to_s(*args, **options, &)
val
Sourcevalue
zero?
Source