結果

問題 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
コンパイル時間 387 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-03-29 21:30:37
合計ジャッジ時間 20,762 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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