結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | Meso Meso |
提出日時 | 2024-08-20 09:14:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 247 bytes |
コンパイル時間 | 2,806 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-08-20 09:14:53 |
合計ジャッジ時間 | 25,197 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,496 KB |
testcase_01 | AC | 1,329 ms
10,496 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 1,384 ms
10,752 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 1,988 ms
10,752 KB |
testcase_06 | AC | 1,749 ms
10,624 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
ソースコード
mod = 998244353 t = int(input()) ans = 0 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, mod) - 1) * pow(10, n - m, mod) % mod)