結果

問題 No.2699 Simple Math (Returned)
ユーザー ああいいああいい
提出日時 2024-05-23 21:59:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-05-23 21:59:46
合計ジャッジ時間 9,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,076 KB
testcase_01 AC 477 ms
76,524 KB
testcase_02 AC 677 ms
76,272 KB
testcase_03 AC 456 ms
76,072 KB
testcase_04 AC 807 ms
76,328 KB
testcase_05 AC 617 ms
76,056 KB
testcase_06 AC 573 ms
76,116 KB
testcase_07 AC 712 ms
76,312 KB
testcase_08 AC 725 ms
76,368 KB
testcase_09 AC 737 ms
76,720 KB
testcase_10 AC 743 ms
76,592 KB
testcase_11 AC 703 ms
76,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
P = 998244353


for _ in range(T):
	N,M = map(int,input().split())
	M += 1
	r = N % (2 * M - 2)
	if r < M:
		ans = pow(10,r,P) - 1
	else:
		u = r - M + 1
		ans = pow(10,M - 1,P) - pow(10,u,P)
	print(ans%P)
0