結果

問題 No.2699 Simple Math (Returned)
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-03-29 21:30:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-30 15:38:52
合計ジャッジ時間 22,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 WA -
testcase_02 TLE -
testcase_03 AC 1,378 ms
10,496 KB
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
mod = 998244353
for _ in range(T) :
	n, m = map(int, input().split())
	a = n // m
	b = n % m
	ans = pow(10, b, mod)
	if a & 1 :
		ans = (mod - ans) % mod
	ans = (ans + mod - 1) % mod
	print(ans)
	
0