結果

問題 No.2699 Simple Math (Returned)
ユーザー pluto77pluto77
提出日時 2024-05-17 16:31:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 83,108 KB
実行使用メモリ 76,920 KB
最終ジャッジ日時 2024-05-17 16:32:01
合計ジャッジ時間 10,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,204 KB
testcase_01 AC 431 ms
76,180 KB
testcase_02 AC 588 ms
76,528 KB
testcase_03 AC 441 ms
76,220 KB
testcase_04 AC 673 ms
76,308 KB
testcase_05 AC 551 ms
76,788 KB
testcase_06 AC 518 ms
76,380 KB
testcase_07 AC 642 ms
76,632 KB
testcase_08 AC 626 ms
76,508 KB
testcase_09 AC 646 ms
76,920 KB
testcase_10 AC 662 ms
76,416 KB
testcase_11 AC 644 ms
76,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
mod=998244353
for i in range(t):
 n,m=map(int,input().split())
 n%=m*2
 if n<=m:
  print((pow(10,n,mod)-1)%mod)
 else:
  print((pow(10,m*2-n,mod)-1)*pow(10,n-m,mod)%mod)
0