結果
問題 | No.2452 Incline |
ユーザー | 👑 獅子座じゃない人 |
提出日時 | 2023-09-01 22:17:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 498 bytes |
コンパイル時間 | 1,916 ms |
コンパイル使用メモリ | 169,372 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 04:08:56 |
合計ジャッジ時間 | 4,171 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/modint> using namespace atcoder; using mint=modint998244353; int main(void) { int t; cin >> t; while(t--){ long long n,m,l,r; cin >> n >> m >> l >> r; mint ans=r-l+1; long long tmp=r/(n-1); ans+=mint(tmp)*(tmp-1)/2*(n-1)+tmp*(r%(n-1)+1); tmp=(m-l)/(n-1); ans+=mint(tmp)*(tmp-1)/2*(n-1)+tmp*((m-l)%(n-1)+1); cout << ans.val() << endl; } return 0; }