結果

問題 No.2699 Simple Math (Returned)
ユーザー achapiachapi
提出日時 2024-11-09 15:25:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 4,047 ms
コンパイル使用メモリ 263,056 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 15:25:23
合計ジャッジ時間 10,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 347 ms
5,248 KB
testcase_02 AC 450 ms
5,248 KB
testcase_03 AC 342 ms
5,248 KB
testcase_04 AC 469 ms
5,248 KB
testcase_05 AC 421 ms
5,248 KB
testcase_06 AC 387 ms
5,248 KB
testcase_07 AC 437 ms
5,248 KB
testcase_08 AC 461 ms
5,248 KB
testcase_09 AC 441 ms
5,248 KB
testcase_10 AC 445 ms
5,248 KB
testcase_11 AC 434 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::modint998244353;
using namespace std;
int main(){
	int T;
	cin >> T;
	while (T--){
		int N, M;
		cin >> N >> M;
		if (N / M % 2 == 0){
			cout << (mint(10).pow(N % M) - 1).val() << endl;
		} else {
			cout << (mint(10).pow(M) - mint(10).pow(N % M)).val() << endl;
		}
	}
}
0