結果

問題 No.2544 Many RMQ Problems
ユーザー 👑 NachiaNachia
提出日時 2023-11-16 01:02:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 78,540 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 04:55:27
合計ジャッジ時間 3,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 147 ms
5,376 KB
testcase_04 AC 130 ms
5,376 KB
testcase_05 AC 117 ms
5,376 KB
testcase_06 AC 136 ms
5,376 KB
testcase_07 AC 63 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 146 ms
5,376 KB
testcase_20 AC 146 ms
5,376 KB
testcase_21 AC 147 ms
5,376 KB
testcase_22 AC 146 ms
5,376 KB
testcase_23 AC 147 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 146 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 146 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <atcoder/modint>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(i64 i=0; i<(i64)(n); i++)
#define repr(i,n) for(i64 i=(i64)(n)-1; i>=0; i--)
const i64 INF = 1001001001001001001;
using Modint = atcoder::static_modint<998244353>;

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int N, Q; cin >> N >> Q;
    Modint ans = 0;
    for(int x=1; x<=N; x++){
        ans += Modint(N-x+1) * Modint(N+1) / Modint(x+1);
    }
    ans *= Q;
    for(int i=1; i<=N; i++) ans *= Modint(i);
    ans *= (Modint(N) * Modint(N+1) / Modint(2)).pow(Q-1);
    cout << ans.val() << endl;
    return 0;
}
0