結果
問題 | No.2568 列辞書順列列 |
ユーザー | a01sa01to |
提出日時 | 2023-12-02 16:55:10 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 281 ms / 3,000 ms |
コード長 | 614 bytes |
コンパイル時間 | 2,298 ms |
コンパイル使用メモリ | 205,792 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 20:52:36 |
合計ジャッジ時間 | 10,827 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); ++i) #include<atcoder/modint> using mint = atcoder::modint998244353; int main() { int n, m, q; cin >> n >> m >> q; vector<int> a(n); rep(i, n) cin >> a[i]; vector<mint> sum(n + 1, 0); rep(i, n) sum[i + 1] = sum[i] * m + (a[i] - 1); while (q--) { int l, r; cin >> l >> r; --l; cout << (sum[r] - sum[l] * mint(m).pow(r - l) + 1).val() << endl; } return 0; }