結果
問題 |
No.2699 Simple Math (Returned)
|
ユーザー |
|
提出日時 | 2024-03-29 21:50:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 144 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 199,144 KB |
最終ジャッジ日時 | 2024-09-30 15:49:42 |
合計ジャッジ時間 | 4,112 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | TLE * 1 -- * 10 |
ソースコード
t = int(input()) for _ in range(t): n, m = map(int, input().split()) a = 10**n-1 b = 10**m+1 ans = a%b%998244353 print(ans)