結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー ks2mks2m
提出日時 2024-05-10 22:23:54
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,631 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 77,892 KB
実行使用メモリ 58,380 KB
最終ジャッジ日時 2024-05-10 22:24:20
合計ジャッジ時間 17,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,012 KB
testcase_01 AC 52 ms
50,440 KB
testcase_02 AC 52 ms
50,388 KB
testcase_03 AC 52 ms
50,152 KB
testcase_04 AC 52 ms
50,584 KB
testcase_05 AC 53 ms
50,204 KB
testcase_06 AC 52 ms
50,572 KB
testcase_07 AC 53 ms
49,900 KB
testcase_08 AC 52 ms
50,468 KB
testcase_09 AC 52 ms
50,352 KB
testcase_10 AC 52 ms
50,388 KB
testcase_11 AC 52 ms
50,452 KB
testcase_12 AC 52 ms
50,400 KB
testcase_13 AC 53 ms
50,552 KB
testcase_14 AC 52 ms
50,504 KB
testcase_15 AC 53 ms
50,396 KB
testcase_16 AC 52 ms
50,304 KB
testcase_17 AC 53 ms
50,196 KB
testcase_18 AC 53 ms
50,516 KB
testcase_19 AC 52 ms
50,324 KB
testcase_20 AC 1,729 ms
56,324 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		int mod = 998244353;
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			long l = Long.parseLong(br.readLine()) - 1;
			if (l == 0) {
				pw.println(26);
				continue;
			}

			long[][] a = new long[2][2];
			a[0][0] = 26;
			a[0][1] = 26;
			a[1][0] = 0;
			a[1][1] = 1;
			long[][] b = matrixPow(a, l, mod);
			long[] c = new long[] {26, 1};
			long[] d = matrixMul1(c, b, mod);
			long ans = (d[1] + 25) % mod;
			pw.println(ans);
		}
		pw.flush();
		br.close();
	}

	static long[][] matrixPow(long[][] a, long k, int m) {
		if (k == 1) {
			return a;
		}
		long[][] ret = matrixPow(a, k / 2, m);
		ret = matrixMul(ret, ret, m);
		if (k % 2 == 1) {
			ret = matrixMul(ret, a, m);
		}
		return ret;
	}

	static long[][] matrixMul(long[][] a, long[][] b, int m) {
		int h = a.length;
		int w = b[0].length;
		int n = a[0].length;
		long[][] c = new long[h][w];
		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				for (int x = 0; x < n; x++) {
					c[i][j] += a[i][x] * b[x][j];
					c[i][j] %= m;
				}
			}
		}
		return c;
	}

	static long[] matrixMul1(long[] a, long[][] b, int m) {
		int w = b[0].length;
		int n = a.length;
		long[] c = new long[w];
		for (int j = 0; j < w; j++) {
			for (int x = 0; x < n; x++) {
				c[j] += a[x] * b[x][j];
				c[j] %= m;
			}
		}
		return c;
	}
}
0