結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー lloyzlloyz
提出日時 2024-03-08 00:39:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 1,188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 143,996 KB
最終ジャッジ日時 2024-09-29 18:44:26
合計ジャッジ時間 11,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 643 ms
76,672 KB
testcase_02 AC 695 ms
76,592 KB
testcase_03 AC 662 ms
76,580 KB
testcase_04 AC 650 ms
76,544 KB
testcase_05 AC 861 ms
76,776 KB
testcase_06 AC 889 ms
76,672 KB
testcase_07 AC 120 ms
76,636 KB
testcase_08 AC 117 ms
76,416 KB
testcase_09 AC 82 ms
76,644 KB
testcase_10 AC 82 ms
76,160 KB
testcase_11 AC 48 ms
62,336 KB
testcase_12 AC 49 ms
62,336 KB
testcase_13 AC 157 ms
122,836 KB
testcase_14 AC 165 ms
124,008 KB
testcase_15 AC 148 ms
121,196 KB
testcase_16 AC 152 ms
115,912 KB
testcase_17 AC 157 ms
143,996 KB
testcase_18 AC 152 ms
129,260 KB
testcase_19 AC 155 ms
127,136 KB
testcase_20 AC 158 ms
130,944 KB
testcase_21 AC 154 ms
135,344 KB
testcase_22 AC 160 ms
126,892 KB
testcase_23 AC 149 ms
131,204 KB
testcase_24 AC 149 ms
130,760 KB
testcase_25 AC 153 ms
131,072 KB
testcase_26 AC 149 ms
130,800 KB
testcase_27 AC 150 ms
131,048 KB
testcase_28 AC 149 ms
130,944 KB
testcase_29 AC 149 ms
131,196 KB
testcase_30 AC 148 ms
130,824 KB
testcase_31 AC 149 ms
130,816 KB
testcase_32 AC 150 ms
131,256 KB
testcase_33 AC 139 ms
130,940 KB
testcase_34 AC 577 ms
76,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = input().split()
    m = int(m)
    l = len(n)
    N = []
    Pow10 = [1]
    for i in range(l):
        N.append(int(n[i]))
        Pow10.append(Pow10[-1] * 10 % m)
    L = []
    res = 0
    r = 0
    for i in range(l):
        res = r * 10 + N[i]
        q, r = divmod(res, 2)
        L.append(q)
    if N[-1] % 2 == 0:
        N[-1] += 1
    else:
        L[-1] += 1
    a, b = 0, 0
    for i in range(l):
        a += N[i] * Pow10[l - i - 1] % m
        a %= m
        b += L[i] * Pow10[l - i - 1] % m
        b %= m
    ans = a * b % m
    print(ans)
0