結果

問題 No.2351 Butterfly in Summer
ユーザー ks2mks2m
提出日時 2023-06-16 21:28:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 76,848 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-24 13:01:54
合計ジャッジ時間 6,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,268 KB
testcase_01 AC 130 ms
54,200 KB
testcase_02 AC 129 ms
54,220 KB
testcase_03 AC 131 ms
54,156 KB
testcase_04 AC 130 ms
54,136 KB
testcase_05 AC 131 ms
54,304 KB
testcase_06 AC 127 ms
54,336 KB
testcase_07 AC 130 ms
54,288 KB
testcase_08 AC 116 ms
53,012 KB
testcase_09 AC 127 ms
54,096 KB
testcase_10 AC 132 ms
54,016 KB
testcase_11 AC 133 ms
54,068 KB
testcase_12 AC 131 ms
53,988 KB
testcase_13 AC 129 ms
54,004 KB
testcase_14 AC 129 ms
54,084 KB
testcase_15 AC 130 ms
54,332 KB
testcase_16 AC 131 ms
54,020 KB
testcase_17 AC 130 ms
54,372 KB
testcase_18 AC 133 ms
53,936 KB
testcase_19 AC 133 ms
54,032 KB
testcase_20 AC 130 ms
54,248 KB
testcase_21 AC 131 ms
54,156 KB
testcase_22 AC 132 ms
54,352 KB
testcase_23 AC 129 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		int mod = 998244353;
		long v1 = (long) k * (k - 1);
		long v2 = v1 * n % mod;
		long u1 = power(k, n, mod);
		long u2 = modinv(u1, mod);
		long ans = v2 * u2 % mod;
		System.out.println(ans);
	}

	static long modinv(long a, int m) {
		long b = m;
		long u = 1;
		long v = 0;
		long tmp = 0;

		while (b > 0) {
			long t = a / b;
			a -= t * b;
			tmp = a;
			a = b;
			b = tmp;

			u -= t * v;
			tmp = u;
			u = v;
			v = tmp;
		}

		u %= m;
		if (u < 0) u += m;
		return u;
	}

	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;
	}
}
0