結果

問題 No.1897 Sum of 2nd Max
ユーザー ShirotsumeShirotsume
提出日時 2022-02-06 22:03:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 76,492 KB
実行使用メモリ 43,120 KB
最終ジャッジ日時 2024-05-06 06:43:58
合計ジャッジ時間 11,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,860 KB
testcase_01 AC 117 ms
40,120 KB
testcase_02 AC 131 ms
41,144 KB
testcase_03 AC 368 ms
42,496 KB
testcase_04 AC 363 ms
42,956 KB
testcase_05 AC 249 ms
41,944 KB
testcase_06 AC 246 ms
41,344 KB
testcase_07 AC 291 ms
42,260 KB
testcase_08 AC 261 ms
41,952 KB
testcase_09 AC 374 ms
42,716 KB
testcase_10 AC 368 ms
42,960 KB
testcase_11 AC 369 ms
43,064 KB
testcase_12 AC 369 ms
42,844 KB
testcase_13 AC 371 ms
42,616 KB
testcase_14 AC 208 ms
42,896 KB
testcase_15 AC 217 ms
42,504 KB
testcase_16 AC 245 ms
43,120 KB
testcase_17 AC 218 ms
42,816 KB
testcase_18 AC 232 ms
42,800 KB
testcase_19 AC 134 ms
41,172 KB
testcase_20 AC 131 ms
41,076 KB
testcase_21 AC 132 ms
41,288 KB
testcase_22 AC 132 ms
41,344 KB
testcase_23 AC 131 ms
41,360 KB
testcase_24 AC 131 ms
41,272 KB
testcase_25 AC 135 ms
41,116 KB
testcase_26 AC 133 ms
41,228 KB
testcase_27 AC 132 ms
41,056 KB
testcase_28 AC 132 ms
41,080 KB
testcase_29 AC 134 ms
40,188 KB
testcase_30 AC 366 ms
42,792 KB
testcase_31 AC 380 ms
42,952 KB
testcase_32 AC 307 ms
42,288 KB
testcase_33 AC 393 ms
42,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	  public static void main(String[] args) {
	        Scanner sc = new Scanner(System.in);
	        long n = sc.nextLong();
	        long k = sc.nextLong();
	        long mod = 998244353;
	        long [] q = new long [(int)k + 10];
	        long ans = 0;
	        for(int i = (int)k + 1; i > 0; i--){
	        	q[i] = modPow(k, n, mod) - modPow(i - 1,n, mod) - (((k - i + 1) * n) % mod) * modPow(i - 1, n - 1, mod);
	        	q[i] %= mod;
	        	ans += ((q[i] - q[i + 1] + mod) * i) % mod;
	        	ans %= mod;
	        }
	        System.out.println(ans);
	    }
	  public static long modPow(long a, long n, long mod) {
	        long ans = 1;
	        long tmp = a;

	        while(true) {
	            if (n < 1) {
	                break;
	            }
	            if (n % 2 == 1) {
	                ans *= tmp;
	                ans %= mod;
	            }

	            tmp *= tmp;
	            tmp %= mod;

	            n /= 2;
	        }
	        return ans;
	    }


}
0