結果

問題 No.1471 Sort Queries
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-06-14 00:46:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-06 04:42:10
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 49 ms
12,032 KB
testcase_14 AC 49 ms
11,776 KB
testcase_15 AC 63 ms
11,904 KB
testcase_16 AC 49 ms
11,136 KB
testcase_17 AC 44 ms
11,904 KB
testcase_18 AC 44 ms
11,648 KB
testcase_19 AC 47 ms
11,264 KB
testcase_20 AC 63 ms
12,032 KB
testcase_21 AC 48 ms
11,776 KB
testcase_22 AC 44 ms
11,904 KB
testcase_23 AC 77 ms
13,184 KB
testcase_24 AC 74 ms
13,056 KB
testcase_25 AC 105 ms
13,312 KB
testcase_26 AC 83 ms
12,416 KB
testcase_27 AC 87 ms
13,696 KB
testcase_28 AC 90 ms
13,824 KB
testcase_29 AC 78 ms
12,416 KB
testcase_30 AC 74 ms
13,056 KB
testcase_31 AC 100 ms
13,056 KB
testcase_32 AC 106 ms
12,416 KB
testcase_33 AC 126 ms
13,824 KB
testcase_34 AC 117 ms
13,824 KB
testcase_35 AC 117 ms
13,824 KB
testcase_36 AC 124 ms
13,824 KB
testcase_37 AC 122 ms
13,952 KB
testcase_38 AC 95 ms
14,208 KB
testcase_39 AC 117 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cs = [None for i in range(len(S)+1)]
cs[0] = [0]*26
chidx = [0]*26

for i,s in enumerate(S, 1):
    chidx[ord(s) - ord('a')] += 1 # 文字の累積和
    cs[i] = chidx[:] # コピーする

que = []
for q in range(Q):
    l,r,x=map(int,input().split())
    diff = [ri-li for ri,li in zip(cs[r], cs[l-1])]
    tmp = 0
    for i, d in enumerate(diff, ord('a')):
        tmp += d
        if tmp >= x:
            que.append(chr(i))
            break
print(*que,sep='\n')
0