結果

問題 No.2699 Simple Math (Returned)
ユーザー miya145592miya145592
提出日時 2024-03-30 01:32:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-09-30 17:22:41
合計ジャッジ時間 5,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 321 ms
97,152 KB
testcase_03 AC 168 ms
96,896 KB
testcase_04 AC 419 ms
97,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 357 ms
97,176 KB
testcase_08 AC 361 ms
97,124 KB
testcase_09 AC 352 ms
97,260 KB
testcase_10 AC 374 ms
97,080 KB
testcase_11 AC 375 ms
97,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
input = sys.stdin.readline
MOD = 998244353
T = int(input())
NM = [list(map(int, input().split())) for _ in range(T)]
for n, m in NM:
    cnt = n//m
    amari = n%m
    if amari==0:
        if cnt%2==0:
            ans = 0
        else:
            ans = (pow(10, m, MOD)-2)%MOD
    else:
        if cnt%2==0:
            ans = (pow(10, amari, MOD)-1)%MOD
        else:
            ans = (pow(10, m, MOD)-pow(10, amari, MOD))%MOD
    print(ans)
0