結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | detteiuu |
提出日時 | 2024-05-10 14:49:30 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 82,576 KB |
実行使用メモリ | 847,720 KB |
最終ジャッジ日時 | 2024-05-10 14:49:36 |
合計ジャッジ時間 | 5,388 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,188 KB |
testcase_01 | AC | 474 ms
76,588 KB |
testcase_02 | RE | - |
testcase_03 | AC | 436 ms
76,516 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
T = int(input()) MOD = 998244353 for _ in range(T): N, M = map(int, input().split()) N %= (M*2) A = [9]*N if N > M: for i in range(N-M): A[-(i+1)] = 0 ans = 0 for i in range(N): ans = ans*10+A[i] ans %= MOD print(ans)