結果

問題 No.1471 Sort Queries
ユーザー 8nd5t8nd5t
提出日時 2021-04-09 21:40:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-06-25 04:40:26
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,400 KB
testcase_01 AC 50 ms
54,528 KB
testcase_02 AC 52 ms
54,528 KB
testcase_03 AC 58 ms
61,952 KB
testcase_04 AC 52 ms
55,296 KB
testcase_05 AC 52 ms
54,656 KB
testcase_06 AC 48 ms
54,784 KB
testcase_07 AC 50 ms
54,656 KB
testcase_08 AC 60 ms
63,360 KB
testcase_09 AC 56 ms
61,440 KB
testcase_10 AC 50 ms
54,656 KB
testcase_11 AC 51 ms
55,040 KB
testcase_12 AC 58 ms
62,208 KB
testcase_13 AC 84 ms
73,728 KB
testcase_14 AC 81 ms
72,704 KB
testcase_15 AC 93 ms
78,080 KB
testcase_16 AC 83 ms
73,216 KB
testcase_17 AC 83 ms
72,320 KB
testcase_18 AC 81 ms
72,064 KB
testcase_19 AC 81 ms
72,192 KB
testcase_20 AC 94 ms
78,080 KB
testcase_21 AC 87 ms
73,600 KB
testcase_22 AC 82 ms
72,064 KB
testcase_23 AC 103 ms
79,232 KB
testcase_24 AC 103 ms
79,360 KB
testcase_25 AC 113 ms
79,232 KB
testcase_26 AC 106 ms
78,464 KB
testcase_27 AC 107 ms
79,744 KB
testcase_28 AC 107 ms
80,128 KB
testcase_29 AC 102 ms
78,720 KB
testcase_30 AC 98 ms
78,848 KB
testcase_31 AC 106 ms
78,976 KB
testcase_32 AC 106 ms
78,464 KB
testcase_33 AC 110 ms
80,256 KB
testcase_34 AC 112 ms
79,872 KB
testcase_35 AC 108 ms
80,128 KB
testcase_36 AC 107 ms
80,384 KB
testcase_37 AC 106 ms
79,872 KB
testcase_38 AC 110 ms
79,872 KB
testcase_39 AC 105 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,itertools
from collections import Counter,deque,defaultdict
from bisect import bisect_left,bisect_right 
from heapq import heappop,heappush,heapify
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inps(): return sys.stdin.readline()
def inpsl(x): tmp = inps(); return list(tmp[:x])
def err(x): print(x); exit()

n,q = inpl()
s = input()
ac = [[0]*26 for _ in range(n+1)]
for i,x in enumerate(s):
    for j in range(26):
        tmp = 1 if 97+j == ord(x) else 0
        ac[i+1][j] = ac[i][j] + tmp

for _ in range(q):
    l,r,X = inpl()
    cnt = 0
    for j in range(26):
        cnt += ac[r][j] - ac[l-1][j]
        if cnt >= X:
            print(chr(97+j))
            break

0