結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | Butterflv |
提出日時 | 2024-05-01 18:24:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 250 bytes |
コンパイル時間 | 1,581 ms |
コンパイル使用メモリ | 82,120 KB |
実行使用メモリ | 76,832 KB |
最終ジャッジ日時 | 2024-05-01 18:25:04 |
合計ジャッジ時間 | 10,233 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 672 ms
75,872 KB |
testcase_03 | AC | 485 ms
76,116 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
T=int(input()) MOD=998244353 for i in range(T): N,M=map(int, input().split()) if N<=M: print((pow(10, N, MOD)-1)%MOD) continue N__M=N//M if N__M%2==0: print((pow(10, N%M, MOD)-1)%MOD) else: print((-pow(10, N%M, MOD)-1)%MOD)