結果
問題 | No.2113 Distance Sequence 1.5 |
ユーザー | shotoyoo |
提出日時 | 2022-10-28 22:09:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 469 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 54,272 KB |
最終ジャッジ日時 | 2024-07-06 01:18:32 |
合計ジャッジ時間 | 1,806 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,760 KB |
testcase_01 | AC | 38 ms
54,016 KB |
testcase_02 | AC | 40 ms
54,016 KB |
testcase_03 | AC | 38 ms
53,632 KB |
testcase_04 | AC | 37 ms
54,144 KB |
testcase_05 | AC | 35 ms
53,632 KB |
testcase_06 | AC | 35 ms
53,632 KB |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
54,016 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 35 ms
54,136 KB |
testcase_15 | WA | - |
testcase_16 | AC | 36 ms
53,760 KB |
testcase_17 | AC | 35 ms
53,888 KB |
testcase_18 | AC | 35 ms
54,144 KB |
testcase_19 | AC | 34 ms
53,888 KB |
testcase_20 | WA | - |
testcase_21 | AC | 37 ms
54,016 KB |
testcase_22 | WA | - |
testcase_23 | AC | 36 ms
53,888 KB |
testcase_24 | WA | - |
ソースコード
import sys, random input = lambda : sys.stdin.readline().rstrip() write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x)) debug = lambda x: sys.stderr.write(x+"\n") YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18 LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()] def debug(_l_): for s in _l_.split(): print(f"{s}={eval(s)}", end=" ") print() def dlist(*l, fill=0): if len(l)==1: return [fill]*l[0] ll = l[1:] return [dlist(*ll, fill=fill) for _ in range(l[0])] n,m,k = list(map(int, input().split())) M = 998244353 ans = pow(k, 2*n, M) * (m-k+1) % M ans -= pow(k-1, 2*n, M) * (m-k) % M print(ans%M)