結果
問題 | No.2452 Incline |
ユーザー | 👑 binap |
提出日時 | 2023-09-01 22:43:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 423 ms / 2,000 ms |
コード長 | 825 bytes |
コンパイル時間 | 4,171 ms |
コンパイル使用メモリ | 219,756 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-03 10:15:23 |
合計ジャッジ時間 | 6,856 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 423 ms
5,248 KB |
testcase_04 | AC | 358 ms
5,248 KB |
testcase_05 | AC | 321 ms
5,248 KB |
testcase_06 | AC | 357 ms
5,248 KB |
testcase_07 | AC | 348 ms
5,248 KB |
testcase_08 | AC | 267 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h>#include<atcoder/all>#define rep(i,n) for(int i=0;i<n;i++)using namespace std;using namespace atcoder;typedef long long ll;typedef vector<int> vi;typedef vector<long long> vl;typedef vector<vector<int>> vvi;typedef vector<vector<long long>> vvl;typedef pair<int,int> P;typedef long double ld;using mint = modint998244353;mint calc(ll n, ll m, ll x){m++; x++;ll p = m / (n - 1), q = m % (n - 1);ll a = x / (n - 1), b = x % (n - 1);mint loop = mint(p) * (n - 1) + mint(q);mint res = loop * a + mint(p) * (b) + mint(min(q, b));return res;}void solve(){ll n, m, l, r;cin >> n >> m >> l >> r;// rep(i, m + 1) cout << calc(n, m, i).val() << "\n";cout << (calc(n, m, r) - calc(n, m, l - 1)).val() << "\n";}int main(){int t;cin >> t;rep(i, t) solve();return 0;}