結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | Magentor |
提出日時 | 2023-12-08 21:18:39 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 377 ms / 2,000 ms |
コード長 | 682 bytes |
コンパイル時間 | 5,421 ms |
コンパイル使用メモリ | 307,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 03:38:10 |
合計ジャッジ時間 | 12,146 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 291 ms
5,248 KB |
testcase_02 | AC | 359 ms
5,376 KB |
testcase_03 | AC | 292 ms
5,376 KB |
testcase_04 | AC | 377 ms
5,376 KB |
testcase_05 | AC | 342 ms
5,376 KB |
testcase_06 | AC | 326 ms
5,376 KB |
testcase_07 | AC | 362 ms
5,376 KB |
testcase_08 | AC | 361 ms
5,376 KB |
testcase_09 | AC | 367 ms
5,376 KB |
testcase_10 | AC | 367 ms
5,376 KB |
testcase_11 | AC | 366 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; typedef long long ll; using mint = modint998244353; long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } void solve(){ std::cin.tie(0)->sync_with_stdio(0); ll n,m;cin>>n>>m; n %= 2*m; if(n<=m){mint ans = modpow(10ll,n,998244353LL);ans--;cout<<ans.val()<<endl;} else{mint ans = modpow(10LL,m,998244353LL)-modpow(10LL,n-m,998244353LL);cout << ans.val()<<endl;} } int main() { int t;cin>>t; while(t--){ solve(); } }