結果
問題 | No.2568 列辞書順列列 |
ユーザー | GOTKAKO |
提出日時 | 2023-12-02 15:52:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 200 ms / 3,000 ms |
コード長 | 755 bytes |
コンパイル時間 | 2,154 ms |
コンパイル使用メモリ | 203,492 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-09-26 19:27:06 |
合計ジャッジ時間 | 9,130 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 146 ms
5,376 KB |
testcase_03 | AC | 161 ms
5,376 KB |
testcase_04 | AC | 175 ms
7,936 KB |
testcase_05 | AC | 175 ms
7,936 KB |
testcase_06 | AC | 173 ms
7,808 KB |
testcase_07 | AC | 177 ms
7,808 KB |
testcase_08 | AC | 177 ms
7,936 KB |
testcase_09 | AC | 189 ms
7,808 KB |
testcase_10 | AC | 188 ms
7,936 KB |
testcase_11 | AC | 182 ms
7,936 KB |
testcase_12 | AC | 198 ms
7,936 KB |
testcase_13 | AC | 198 ms
7,936 KB |
testcase_14 | AC | 200 ms
7,808 KB |
testcase_15 | AC | 200 ms
7,936 KB |
testcase_16 | AC | 198 ms
7,936 KB |
testcase_17 | AC | 187 ms
7,808 KB |
testcase_18 | AC | 185 ms
7,808 KB |
testcase_19 | AC | 184 ms
7,936 KB |
testcase_20 | AC | 185 ms
7,936 KB |
testcase_21 | AC | 187 ms
7,808 KB |
testcase_22 | AC | 187 ms
7,808 KB |
testcase_23 | AC | 184 ms
7,936 KB |
testcase_24 | AC | 186 ms
7,808 KB |
testcase_25 | AC | 187 ms
7,936 KB |
testcase_26 | AC | 188 ms
7,936 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long mod = 998244353; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,M,Q; cin >> N >> M >> Q; vector<long long> A(N); for(auto &a : A) cin >> a,a--; vector<long long> L1(N); long long now = 0; for(int i=0; i<N; i++){ now = now*M%mod; now = (now+A.at(i))%mod; L1.at(i) = now; } vector<long long> powerM(N+1,1); for(int i=1; i<=N; i++) powerM.at(i) = powerM.at(i-1)*M%mod; for(int i=0; i<Q; i++){ int l,r; cin >> l >> r; l--; r--; long long answer = L1.at(r); if(l) answer = (answer-L1.at(l-1)*powerM.at(r-l+1)%mod+mod)%mod; cout << (answer+1)%mod << endl; } }