結果

問題 No.2699 Simple Math (Returned)
ユーザー moon17moon17
提出日時 2024-03-29 23:33:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-30 17:03:15
合計ジャッジ時間 9,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 479 ms
76,480 KB
testcase_02 AC 653 ms
75,936 KB
testcase_03 AC 467 ms
76,056 KB
testcase_04 AC 772 ms
76,544 KB
testcase_05 AC 637 ms
76,064 KB
testcase_06 AC 550 ms
76,288 KB
testcase_07 AC 718 ms
76,800 KB
testcase_08 AC 716 ms
76,028 KB
testcase_09 AC 704 ms
76,288 KB
testcase_10 AC 727 ms
76,160 KB
testcase_11 AC 719 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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