結果

問題 No.1836 Max Matrix
ユーザー asumo0729asumo0729
提出日時 2022-02-20 17:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-06-29 10:52:25
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,016 KB
testcase_01 AC 49 ms
54,272 KB
testcase_02 AC 361 ms
63,232 KB
testcase_03 AC 378 ms
63,488 KB
testcase_04 AC 225 ms
63,104 KB
testcase_05 AC 322 ms
63,104 KB
testcase_06 AC 257 ms
63,616 KB
testcase_07 AC 370 ms
63,488 KB
testcase_08 AC 152 ms
63,360 KB
testcase_09 AC 380 ms
63,488 KB
testcase_10 AC 255 ms
62,976 KB
testcase_11 AC 48 ms
53,760 KB
testcase_12 AC 497 ms
64,512 KB
testcase_13 AC 185 ms
61,568 KB
testcase_14 AC 206 ms
61,696 KB
testcase_15 AC 61 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect
import math
import itertools

stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf1 = float('inf')
#mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])

###############################################################

H, W, M = lp()

ans = 0
for i in range(M, 0, -1):
    a = pow(i, H, mod) - pow(i - 1, H, mod)
    b = pow(i, W, mod) - pow(i - 1, W, mod)
    ans += a * b % mod
    ans %= mod

print(ans)
0