結果

問題 No.1836 Max Matrix
ユーザー ygd.ygd.
提出日時 2022-02-11 22:06:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-06-27 18:57:12
合計ジャッジ時間 4,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 320 ms
57,984 KB
testcase_03 AC 328 ms
57,856 KB
testcase_04 AC 196 ms
58,496 KB
testcase_05 AC 279 ms
57,984 KB
testcase_06 AC 219 ms
57,984 KB
testcase_07 AC 322 ms
57,984 KB
testcase_08 AC 127 ms
57,856 KB
testcase_09 AC 332 ms
57,984 KB
testcase_10 AC 223 ms
57,856 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 431 ms
58,624 KB
testcase_13 AC 165 ms
57,728 KB
testcase_14 AC 183 ms
58,368 KB
testcase_15 AC 51 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]

def main():
    H,W,M = map(int,input().split())
    ans = 0
    for i in range(1,M+1):
        m = M - i + 1 #残り選べる数字
        temp = (pow(m,H,MOD) - pow(m-1,H,MOD)) * (pow(m,W,MOD) - pow(m-1,W,MOD))
        ans += temp
        ans %= MOD
    print(ans)


if __name__ == '__main__':
    main()
0