結果

問題 No.1471 Sort Queries
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-06 11:01:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-09-14 03:45:50
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 61 ms
12,160 KB
testcase_14 AC 61 ms
11,904 KB
testcase_15 AC 79 ms
12,032 KB
testcase_16 AC 58 ms
11,136 KB
testcase_17 AC 55 ms
12,032 KB
testcase_18 AC 49 ms
11,904 KB
testcase_19 AC 58 ms
11,392 KB
testcase_20 AC 79 ms
12,288 KB
testcase_21 AC 58 ms
12,032 KB
testcase_22 AC 54 ms
12,160 KB
testcase_23 AC 97 ms
13,440 KB
testcase_24 AC 96 ms
13,312 KB
testcase_25 AC 125 ms
13,696 KB
testcase_26 AC 102 ms
12,928 KB
testcase_27 AC 111 ms
14,080 KB
testcase_28 AC 110 ms
13,952 KB
testcase_29 AC 98 ms
13,056 KB
testcase_30 AC 95 ms
13,568 KB
testcase_31 AC 128 ms
13,184 KB
testcase_32 AC 132 ms
12,928 KB
testcase_33 AC 150 ms
14,336 KB
testcase_34 AC 148 ms
14,464 KB
testcase_35 AC 148 ms
14,336 KB
testcase_36 AC 148 ms
14,464 KB
testcase_37 AC 151 ms
14,464 KB
testcase_38 AC 115 ms
14,720 KB
testcase_39 AC 144 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,Q=map(int,input().split())
S=input()

cumsum = [None for i in range(len(S)+1)]
cumsum[0] = [0]*26
chidx = [0]*26
for i,s in enumerate(S, 1):
    chidx[ord(s) - ord('a')] += 1
    cumsum[i] = [a for a in chidx]
#print(chidx)

deq = collections.deque()
for q in range(Q):
    l,r,x=map(int,input().split())
    #print("debu", l, r, x)
    diff = [ri-li for ri,li in zip(cumsum[r], cumsum[l-1])]

    tmp = 0
    for i, d in enumerate(diff, ord('a')):
        tmp += d
        if tmp >= x:
            deq.append(chr(i))
            break
print(*deq,sep='\n')
0