結果

問題 No.2699 Simple Math (Returned)
ユーザー aa
提出日時 2024-03-29 21:20:41
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 131 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 846,212 KB
最終ジャッジ日時 2024-09-30 15:32:29
合計ジャッジ時間 8,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,772 KB
testcase_01 AC 484 ms
76,296 KB
testcase_02 MLE -
testcase_03 AC 536 ms
76,104 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