結果
問題 | No.1836 Max Matrix |
ユーザー | kakel-san |
提出日時 | 2022-02-12 00:09:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 769 ms / 2,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 2,395 ms |
コンパイル使用メモリ | 106,624 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-06-27 22:52:31 |
合計ジャッジ時間 | 8,594 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
18,816 KB |
testcase_01 | AC | 26 ms
18,816 KB |
testcase_02 | AC | 632 ms
18,688 KB |
testcase_03 | AC | 625 ms
18,944 KB |
testcase_04 | AC | 364 ms
18,816 KB |
testcase_05 | AC | 529 ms
18,688 KB |
testcase_06 | AC | 396 ms
18,944 KB |
testcase_07 | AC | 604 ms
18,688 KB |
testcase_08 | AC | 199 ms
18,560 KB |
testcase_09 | AC | 632 ms
18,816 KB |
testcase_10 | AC | 411 ms
18,816 KB |
testcase_11 | AC | 27 ms
18,816 KB |
testcase_12 | AC | 769 ms
18,816 KB |
testcase_13 | AC | 272 ms
18,944 KB |
testcase_14 | AC | 312 ms
18,816 KB |
testcase_15 | AC | 29 ms
18,688 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static void Main() { var c = NList; var (h, w, m) = (c[0], c[1], c[2]); var res = 0L; for (var i = 1; i <= m; ++i) { res = (res + Calc(m, i, h) * Calc(m, i, w) % mod) % mod; } WriteLine(res); } static int mod = 998_244_353; static long Calc(int max, int min, int n) { if (n == 1) return 1; if (max == min) return 1; return (Exp(max - min + 1, n) - Exp(max - min, n) + mod) % mod; } static long Exp(long n, long k) { n = n % mod; if (k == 0) return 1; if (k == 1) return n; var half = Exp(n, k / 2); var result = (half * half) % mod; return ((k % 2) == 0) ? result : ((result * n) % mod); } }