結果

問題 No.1471 Sort Queries
ユーザー NoaSaberNoaSaber
提出日時 2021-04-26 10:16:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 1,120 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 88,580 KB
最終ジャッジ日時 2024-07-04 18:50:16
合計ジャッジ時間 9,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,904 KB
testcase_01 AC 46 ms
60,032 KB
testcase_02 AC 49 ms
60,376 KB
testcase_03 AC 62 ms
68,864 KB
testcase_04 AC 54 ms
64,640 KB
testcase_05 AC 45 ms
60,800 KB
testcase_06 AC 47 ms
60,800 KB
testcase_07 AC 48 ms
60,800 KB
testcase_08 AC 64 ms
69,888 KB
testcase_09 AC 51 ms
62,464 KB
testcase_10 AC 46 ms
61,824 KB
testcase_11 AC 49 ms
61,696 KB
testcase_12 AC 65 ms
69,736 KB
testcase_13 AC 183 ms
83,192 KB
testcase_14 AC 173 ms
82,800 KB
testcase_15 AC 202 ms
82,348 KB
testcase_16 AC 151 ms
79,236 KB
testcase_17 AC 168 ms
82,648 KB
testcase_18 AC 159 ms
81,976 KB
testcase_19 AC 162 ms
80,652 KB
testcase_20 AC 186 ms
82,580 KB
testcase_21 AC 176 ms
82,028 KB
testcase_22 AC 169 ms
82,112 KB
testcase_23 AC 230 ms
86,044 KB
testcase_24 AC 228 ms
86,612 KB
testcase_25 AC 261 ms
86,592 KB
testcase_26 AC 218 ms
83,732 KB
testcase_27 AC 244 ms
88,580 KB
testcase_28 AC 247 ms
87,840 KB
testcase_29 AC 209 ms
84,384 KB
testcase_30 AC 219 ms
86,072 KB
testcase_31 AC 243 ms
85,528 KB
testcase_32 AC 242 ms
84,892 KB
testcase_33 AC 276 ms
88,244 KB
testcase_34 AC 277 ms
88,500 KB
testcase_35 AC 284 ms
87,996 KB
testcase_36 AC 244 ms
88,004 KB
testcase_37 AC 243 ms
88,396 KB
testcase_38 AC 197 ms
83,784 KB
testcase_39 AC 205 ms
85,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
S=input()
from collections import Counter
from copy import deepcopy
cum=[Counter() for i in range(N+1)]
for i in range(N):
    cum[i+1]=deepcopy(cum[i])
    cum[i+1][S[i]]+=1
a_l=[chr(i) for i in range(97, 97+26)]
for i in range(Q):
    L,R,X=map(int,input().split())
    tmp_c=cum[R]-cum[L-1]
    tmp=0
    for j in a_l:
        if tmp<=X<=tmp+tmp_c[j]:
            print(j)
            break
        else:
            tmp+=tmp_c[j]
0