結果
問題 | No.2699 Simple Math (Returned) |
ユーザー |
|
提出日時 | 2024-08-20 09:07:47 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 179 bytes |
コンパイル時間 | 518 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 199,308 KB |
最終ジャッジ日時 | 2024-08-20 09:07:52 |
合計ジャッジ時間 | 4,597 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | TLE * 1 -- * 10 |
ソースコード
mod = 998244353t = int(input())ans = 0for i in range(t):n, m = map(int, input().split())a = pow(10, n) - 1b = pow(10, m) + 1c = (a % b) % modprint(c)