結果

問題 No.1471 Sort Queries
ユーザー terasaterasa
提出日時 2022-06-06 17:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-09-21 04:41:37
合計ジャッジ時間 6,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
60,800 KB
testcase_01 AC 55 ms
60,672 KB
testcase_02 AC 51 ms
60,928 KB
testcase_03 AC 63 ms
66,816 KB
testcase_04 AC 54 ms
62,208 KB
testcase_05 AC 52 ms
60,928 KB
testcase_06 AC 52 ms
61,696 KB
testcase_07 AC 58 ms
61,568 KB
testcase_08 AC 65 ms
68,096 KB
testcase_09 AC 53 ms
62,208 KB
testcase_10 AC 54 ms
61,696 KB
testcase_11 AC 53 ms
61,824 KB
testcase_12 AC 63 ms
66,816 KB
testcase_13 AC 127 ms
79,488 KB
testcase_14 AC 126 ms
79,360 KB
testcase_15 AC 129 ms
79,360 KB
testcase_16 AC 100 ms
77,824 KB
testcase_17 AC 126 ms
79,360 KB
testcase_18 AC 123 ms
79,104 KB
testcase_19 AC 107 ms
77,952 KB
testcase_20 AC 128 ms
79,360 KB
testcase_21 AC 124 ms
79,232 KB
testcase_22 AC 125 ms
78,976 KB
testcase_23 AC 161 ms
81,536 KB
testcase_24 AC 154 ms
81,152 KB
testcase_25 AC 157 ms
81,152 KB
testcase_26 AC 146 ms
80,128 KB
testcase_27 AC 165 ms
81,920 KB
testcase_28 AC 171 ms
81,792 KB
testcase_29 AC 141 ms
80,512 KB
testcase_30 AC 147 ms
80,640 KB
testcase_31 AC 152 ms
80,512 KB
testcase_32 AC 137 ms
80,000 KB
testcase_33 AC 166 ms
82,048 KB
testcase_34 AC 181 ms
82,560 KB
testcase_35 AC 178 ms
82,048 KB
testcase_36 AC 172 ms
82,048 KB
testcase_37 AC 171 ms
81,920 KB
testcase_38 AC 166 ms
81,920 KB
testcase_39 AC 163 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, Q = map(int, input().split())
S = input()[:-1]
C = []
acc = [0] * 26
for c in S:
    acc[ord(c) - ord('a')] += 1
    C.append(copy.deepcopy(acc))


for _ in range(Q):
    l, r, x = map(int, input().split())
    l -= 1
    r -= 1
    acc = 0
    for i in range(26):
        acc += C[r][i] - (C[l - 1][i] if l > 0 else 0)
        if acc >= x:
            print(chr(ord('a') + i))
            break
0