結果

問題 No.1471 Sort Queries
ユーザー O2MTO2MT
提出日時 2021-04-18 19:28:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 86,740 KB
最終ジャッジ日時 2024-07-04 04:48:33
合計ジャッジ時間 5,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,032 KB
testcase_01 AC 47 ms
60,416 KB
testcase_02 AC 48 ms
60,032 KB
testcase_03 AC 49 ms
61,056 KB
testcase_04 AC 50 ms
60,800 KB
testcase_05 AC 47 ms
60,544 KB
testcase_06 AC 47 ms
60,416 KB
testcase_07 AC 48 ms
60,288 KB
testcase_08 AC 54 ms
62,976 KB
testcase_09 AC 49 ms
60,928 KB
testcase_10 AC 48 ms
60,416 KB
testcase_11 AC 49 ms
60,800 KB
testcase_12 AC 50 ms
60,928 KB
testcase_13 AC 112 ms
79,232 KB
testcase_14 AC 105 ms
79,548 KB
testcase_15 AC 114 ms
79,360 KB
testcase_16 AC 107 ms
79,104 KB
testcase_17 AC 104 ms
79,488 KB
testcase_18 AC 103 ms
79,616 KB
testcase_19 AC 105 ms
78,684 KB
testcase_20 AC 113 ms
79,360 KB
testcase_21 AC 109 ms
79,940 KB
testcase_22 AC 102 ms
79,496 KB
testcase_23 AC 136 ms
84,736 KB
testcase_24 AC 138 ms
84,736 KB
testcase_25 AC 153 ms
85,120 KB
testcase_26 AC 144 ms
82,816 KB
testcase_27 AC 147 ms
86,352 KB
testcase_28 AC 144 ms
86,232 KB
testcase_29 AC 139 ms
82,984 KB
testcase_30 AC 126 ms
84,096 KB
testcase_31 AC 151 ms
83,772 KB
testcase_32 AC 151 ms
82,560 KB
testcase_33 AC 153 ms
86,528 KB
testcase_34 AC 156 ms
86,656 KB
testcase_35 AC 158 ms
86,528 KB
testcase_36 AC 144 ms
86,740 KB
testcase_37 AC 144 ms
86,492 KB
testcase_38 AC 141 ms
81,492 KB
testcase_39 AC 134 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, deque
from copy import copy
N,Q = map(int,input().split())
S = list(str(input()))
alp = list('abcdefghijklmnopqrstuvwxyz')
s = Counter(sorted(S))
C = deque([copy(s)])

for i in range(N-1,-1,-1):
    s[S[i]] -= 1
    C.appendleft(copy(s))

for _ in range(Q):
    l,r,x = map(int,input().split())
    a,b = C[l-1],C[r]
    count = 0
    for p in alp:
        count += b[p]-a[p]
        if count >= x:
            print(p)
            break
0