結果

問題 No.1471 Sort Queries
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-09 21:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-06-25 04:31:45
合計ジャッジ時間 4,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 45 ms
59,008 KB
testcase_04 AC 46 ms
60,160 KB
testcase_05 AC 43 ms
57,984 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 44 ms
57,728 KB
testcase_08 AC 50 ms
62,208 KB
testcase_09 AC 45 ms
59,008 KB
testcase_10 AC 42 ms
58,624 KB
testcase_11 AC 46 ms
60,544 KB
testcase_12 AC 46 ms
60,032 KB
testcase_13 AC 82 ms
77,520 KB
testcase_14 AC 76 ms
76,880 KB
testcase_15 AC 83 ms
77,420 KB
testcase_16 AC 75 ms
76,412 KB
testcase_17 AC 74 ms
76,736 KB
testcase_18 AC 71 ms
76,976 KB
testcase_19 AC 75 ms
76,608 KB
testcase_20 AC 83 ms
77,056 KB
testcase_21 AC 75 ms
76,816 KB
testcase_22 AC 72 ms
76,640 KB
testcase_23 AC 90 ms
78,160 KB
testcase_24 AC 93 ms
77,952 KB
testcase_25 AC 108 ms
78,336 KB
testcase_26 AC 99 ms
77,520 KB
testcase_27 AC 107 ms
79,124 KB
testcase_28 AC 102 ms
78,192 KB
testcase_29 AC 96 ms
77,600 KB
testcase_30 AC 92 ms
77,640 KB
testcase_31 AC 110 ms
78,204 KB
testcase_32 AC 110 ms
78,084 KB
testcase_33 AC 111 ms
78,712 KB
testcase_34 AC 126 ms
79,488 KB
testcase_35 AC 116 ms
79,160 KB
testcase_36 AC 105 ms
78,932 KB
testcase_37 AC 104 ms
78,512 KB
testcase_38 AC 75 ms
78,464 KB
testcase_39 AC 105 ms
78,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin

alp = "abcdefghijklmnopqrstuvwxyz"

def bitadd(a,w,bit): #aにwを加える(1-origin)

    a += 1
    x = a
    while x <= (len(bit)-1):
        bit[x] += w
        x += x & (-1 * x)
 
def bitsum(a,bit): #ind 1~aまでの和を求める

    a += 1
    ret = 0
    x = a
    while x > 0:
        ret += bit[x]
        x -= x & (-1 * x)
    return ret

ans = []
N,Q = map(int,stdin.readline().split())

S = stdin.readline()[:-1]

b = [[0] * (N+5) for i in range(26)]

for i in range(1,N+1):

    c = ord(S[i-1])-ord('a')
    bitadd(i,1,b[c])

for loop in range(Q):

    L,R,X = map(int,stdin.readline().split())

    for i in range(26):

        X -= bitsum(R,b[i]) - bitsum(L-1,b[i])
        if X <= 0:
            ans.append(alp[i])
            break

print ("\n".join(ans))
0