結果

問題 No.1471 Sort Queries
ユーザー titiatitia
提出日時 2021-04-09 23:54:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-25 12:38:09
合計ジャッジ時間 6,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 36 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 96 ms
12,032 KB
testcase_14 AC 90 ms
11,904 KB
testcase_15 AC 125 ms
11,904 KB
testcase_16 AC 80 ms
11,136 KB
testcase_17 AC 86 ms
11,904 KB
testcase_18 AC 74 ms
11,904 KB
testcase_19 AC 78 ms
11,136 KB
testcase_20 AC 122 ms
12,032 KB
testcase_21 AC 89 ms
11,904 KB
testcase_22 AC 87 ms
11,776 KB
testcase_23 AC 168 ms
13,056 KB
testcase_24 AC 166 ms
13,184 KB
testcase_25 AC 208 ms
13,184 KB
testcase_26 AC 169 ms
12,416 KB
testcase_27 AC 192 ms
13,696 KB
testcase_28 AC 190 ms
13,568 KB
testcase_29 AC 156 ms
12,416 KB
testcase_30 AC 157 ms
12,928 KB
testcase_31 AC 201 ms
12,800 KB
testcase_32 AC 205 ms
12,288 KB
testcase_33 AC 257 ms
13,696 KB
testcase_34 AC 246 ms
13,696 KB
testcase_35 AC 252 ms
13,696 KB
testcase_36 AC 254 ms
13,568 KB
testcase_37 AC 256 ms
13,696 KB
testcase_38 AC 212 ms
13,824 KB
testcase_39 AC 251 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

X=[[0]*26 for i in range(len(S)+1)]
for i in range(len(S)):
    x=ord(S[i])-97
    for j in range(26):
        X[i][j]=X[i-1][j]
        
    X[i][x]+=1

#print(X)

for q in range(Q):
    l,r,x=map(int,input().split())
    l-=1
    r-=1
    Y=[0]*26
    for j in range(26):
        Y[j]+=X[r][j]
        Y[j]-=X[l-1][j]

    now=0
    for j in range(26):
        now+=Y[j]
        if now>=x:
            print(chr(97+j))
            break
    
0