結果

問題 No.1725 [Cherry 3rd Tune D] 無言の言葉
ユーザー KudeKude
提出日時 2021-10-29 22:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 4,000 ms
コード長 1,486 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 158,464 KB
最終ジャッジ日時 2024-10-07 12:28:08
合計ジャッジ時間 12,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 59 ms
63,500 KB
testcase_03 AC 98 ms
76,428 KB
testcase_04 AC 60 ms
65,280 KB
testcase_05 AC 64 ms
67,200 KB
testcase_06 AC 110 ms
76,552 KB
testcase_07 AC 105 ms
76,468 KB
testcase_08 AC 111 ms
77,056 KB
testcase_09 AC 54 ms
63,360 KB
testcase_10 AC 103 ms
76,376 KB
testcase_11 AC 52 ms
62,944 KB
testcase_12 AC 127 ms
81,508 KB
testcase_13 AC 133 ms
82,304 KB
testcase_14 AC 256 ms
82,092 KB
testcase_15 AC 136 ms
82,608 KB
testcase_16 AC 146 ms
83,000 KB
testcase_17 AC 169 ms
84,028 KB
testcase_18 AC 274 ms
80,744 KB
testcase_19 AC 154 ms
80,384 KB
testcase_20 AC 120 ms
78,848 KB
testcase_21 AC 262 ms
79,488 KB
testcase_22 AC 307 ms
103,808 KB
testcase_23 AC 308 ms
101,308 KB
testcase_24 AC 235 ms
93,424 KB
testcase_25 AC 355 ms
118,656 KB
testcase_26 AC 304 ms
108,604 KB
testcase_27 AC 328 ms
124,672 KB
testcase_28 AC 407 ms
122,036 KB
testcase_29 AC 388 ms
119,100 KB
testcase_30 AC 384 ms
129,232 KB
testcase_31 AC 262 ms
100,544 KB
testcase_32 AC 478 ms
148,644 KB
testcase_33 AC 479 ms
150,912 KB
testcase_34 AC 462 ms
144,332 KB
testcase_35 AC 436 ms
137,068 KB
testcase_36 AC 461 ms
144,168 KB
testcase_37 AC 288 ms
76,672 KB
testcase_38 AC 297 ms
76,416 KB
testcase_39 AC 293 ms
76,308 KB
testcase_40 AC 289 ms
76,800 KB
testcase_41 AC 292 ms
76,996 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 261 ms
158,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = [ord(c) - 97 for c in input()]
y = [ord(c) - 97 for c in input()]
lx = len(x)
ly = len(y)

def get_acc(d):
    l = len(d)
    res1 = [[0] * (l + 1) for _ in range(26)]
    res2 = [[0] * (l + 1) for _ in range(26)]
    for i in range(l):
        for j in range(26):
            res1[j][i + 1] = res1[j][i]
        res1[d[i]][i + 1] += 1
    for i in range(l)[::-1]:
        for j in range(26):
            res2[j][i] = res2[j][i + 1]
        res2[d[i]][i] += 1
    return res1, res2

axl, axr = get_acc(x)
ayl, ayr = get_acc(y)

sz = []
l = lx
cx = 1
cy = 0
while not sz or sz[-1][-1] < 10 ** 9:
    sz.append((l, cx, cy))
    l = 2 * l + ly
    cx = 2 * cx
    cy = 2 * cy + 1

def f(r, c):
    flipped = False
    tx = ty = 0
    for l, cx, cy in sz[::-1]:
        if r < l:
            if flipped:
                flipped = not flipped
            continue
        tx += cx
        ty += cy
        r -= l
        if r >= ly:
            ty += 1
            r -= ly
            if not flipped:
                flipped = not flipped
            continue
        res = tx * axl[c][-1] + ty * ayl[c][-1]
        if flipped:
            res += ayr[c][ly - r]
        else:
            res += ayl[c][r]
        return res
    res = tx * axl[c][-1] + ty * ayl[c][-1]
    if flipped:
        res += axr[c][lx - r]
    else:
        res += axl[c][r]
    return res

for _ in range(int(input())):
    l, r, c = input().split()
    c = ord(c) - 97
    print(f(int(r), c) - f(int(l) - 1, c))
0