結果

問題 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  
実行時間 152 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-12-23 16:13:33
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 62 ms
12,032 KB
testcase_14 AC 62 ms
11,904 KB
testcase_15 AC 79 ms
12,032 KB
testcase_16 AC 60 ms
11,136 KB
testcase_17 AC 54 ms
11,904 KB
testcase_18 AC 48 ms
11,776 KB
testcase_19 AC 61 ms
11,264 KB
testcase_20 AC 79 ms
12,288 KB
testcase_21 AC 57 ms
11,904 KB
testcase_22 AC 53 ms
11,904 KB
testcase_23 AC 95 ms
13,184 KB
testcase_24 AC 93 ms
13,056 KB
testcase_25 AC 125 ms
13,312 KB
testcase_26 AC 103 ms
12,544 KB
testcase_27 AC 107 ms
13,824 KB
testcase_28 AC 111 ms
13,696 KB
testcase_29 AC 100 ms
12,544 KB
testcase_30 AC 95 ms
13,056 KB
testcase_31 AC 128 ms
12,928 KB
testcase_32 AC 134 ms
12,544 KB
testcase_33 AC 152 ms
13,824 KB
testcase_34 AC 149 ms
13,824 KB
testcase_35 AC 150 ms
13,952 KB
testcase_36 AC 147 ms
13,824 KB
testcase_37 AC 150 ms
13,824 KB
testcase_38 AC 113 ms
14,208 KB
testcase_39 AC 142 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