結果

問題 No.2699 Simple Math (Returned)
ユーザー aa
提出日時 2024-03-29 21:21:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 131 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 816,352 KB
最終ジャッジ日時 2024-09-30 15:32:59
合計ジャッジ時間 10,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

for _ in range(int(input())):
	n,m=map(int,input().split())
	if n%(2*m)==0:
		print(0)
	else:
		print(int('9'*(n%(2*m)))%998244353)
0