結果
問題 | No.1836 Max Matrix |
ユーザー | ks2m |
提出日時 | 2022-02-11 23:47:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 433 ms / 2,000 ms |
コード長 | 864 bytes |
コンパイル時間 | 2,248 ms |
コンパイル使用メモリ | 77,544 KB |
実行使用メモリ | 45,448 KB |
最終ジャッジ日時 | 2024-06-27 22:18:49 |
合計ジャッジ時間 | 6,967 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
40,308 KB |
testcase_01 | AC | 128 ms
41,320 KB |
testcase_02 | AC | 346 ms
45,344 KB |
testcase_03 | AC | 346 ms
44,260 KB |
testcase_04 | AC | 253 ms
43,372 KB |
testcase_05 | AC | 320 ms
43,952 KB |
testcase_06 | AC | 272 ms
43,016 KB |
testcase_07 | AC | 347 ms
44,296 KB |
testcase_08 | AC | 196 ms
42,580 KB |
testcase_09 | AC | 357 ms
45,236 KB |
testcase_10 | AC | 276 ms
43,952 KB |
testcase_11 | AC | 124 ms
41,012 KB |
testcase_12 | AC | 433 ms
45,284 KB |
testcase_13 | AC | 251 ms
45,448 KB |
testcase_14 | AC | 261 ms
45,168 KB |
testcase_15 | AC | 153 ms
42,780 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); int m = sc.nextInt(); sc.close(); int mod = 998244353; long[] ph = new long[m + 1]; long[] pw = new long[m + 1]; for (int i = 1; i <= m; i++) { ph[i] = power(i, h, mod); pw[i] = power(i, w, mod); } long ans = 0; for (int i = 1; i <= m; i++) { long v1 = ph[i] - ph[i - 1] + mod; v1 %= mod; long v2 = pw[i] - pw[i - 1] + mod; v2 %= mod; long v = v1 * v2 % mod; ans += v; } ans %= mod; System.out.println(ans); } static long power(long x, long n, int m) { if (n == 0) { return 1; } long val = power(x, n / 2, m); val = val * val % m; if (n % 2 == 1) { x %= m; val = val * x % m; } return val; } }