結果
問題 | No.2351 Butterfly in Summer |
ユーザー | fiblonaria |
提出日時 | 2023-06-20 04:04:34 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 1,469 bytes |
コンパイル時間 | 405 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-06-27 15:19:57 |
合計ジャッジ時間 | 2,340 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,224 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 38 ms
51,968 KB |
testcase_03 | AC | 37 ms
51,712 KB |
testcase_04 | AC | 38 ms
51,968 KB |
testcase_05 | AC | 41 ms
51,968 KB |
testcase_06 | AC | 39 ms
51,968 KB |
testcase_07 | AC | 39 ms
51,584 KB |
testcase_08 | AC | 39 ms
51,968 KB |
testcase_09 | AC | 39 ms
51,712 KB |
testcase_10 | AC | 38 ms
52,224 KB |
testcase_11 | AC | 38 ms
51,968 KB |
testcase_12 | AC | 38 ms
52,224 KB |
testcase_13 | AC | 37 ms
51,968 KB |
testcase_14 | AC | 37 ms
51,712 KB |
testcase_15 | AC | 37 ms
51,968 KB |
testcase_16 | AC | 37 ms
51,712 KB |
testcase_17 | AC | 38 ms
51,712 KB |
testcase_18 | AC | 37 ms
51,968 KB |
testcase_19 | AC | 38 ms
51,712 KB |
testcase_20 | AC | 37 ms
51,712 KB |
testcase_21 | AC | 38 ms
52,224 KB |
testcase_22 | AC | 37 ms
51,968 KB |
testcase_23 | AC | 37 ms
51,968 KB |
ソースコード
class mod_int: #素数を法とした自然数, または有理数を扱うことのできるクラス def __init__(self, value, mod): self.value = value % mod self.mod = mod def __neg__(self): return mod_int(-self.value, self.mod) def __add__(self, other): if type(other) == mod_int: return mod_int(self.value + other.value, self.mod) elif type(other) == int: return mod_int(self.value + other, self.mod) raise TypeError() def __sub__(self, other): return self + (-other) def __mul__(self, other): if type(other) == mod_int: return mod_int(self.value * other.value, self.mod) elif type(other) == int: return mod_int(self.value * other, self.mod) raise TypeError() def __truediv__(self, other): if type(other) in [mod_int, int]: return self * other ** (self.mod - 2) raise TypeError() def __pow__(self, other): if type(other) != int: raise TypeError() cur, ret = self.value, 1 while other > 0: if other % 2: ret = (ret * cur) % self.mod other //= 2 cur = (cur ** 2) % self.mod return mod_int(ret, self.mod) def __repr__(self): return str(self.value) mod = 998244353 N_, K_ = map(int, input().split()) N = mod_int(N_, mod) K = mod_int(K_, mod) print(N * K * (K - 1) / (K ** N_))