結果

問題 No.1897 Sum of 2nd Max
ユーザー ShirotsumeShirotsume
提出日時 2022-02-06 22:02:36
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,024 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 43,000 KB
最終ジャッジ日時 2024-05-06 06:43:46
合計ジャッジ時間 7,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,052 KB
testcase_01 AC 111 ms
41,056 KB
testcase_02 AC 112 ms
41,080 KB
testcase_03 AC 322 ms
41,920 KB
testcase_04 RE -
testcase_05 AC 214 ms
41,944 KB
testcase_06 RE -
testcase_07 AC 248 ms
41,388 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 112 ms
42,784 KB
testcase_20 AC 112 ms
42,728 KB
testcase_21 AC 118 ms
42,640 KB
testcase_22 AC 115 ms
42,928 KB
testcase_23 AC 121 ms
42,704 KB
testcase_24 AC 113 ms
41,184 KB
testcase_25 AC 105 ms
40,168 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 124 ms
41,168 KB
testcase_30 AC 313 ms
41,684 KB
testcase_31 AC 346 ms
42,740 KB
testcase_32 AC 274 ms
42,124 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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)n + 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