結果

問題 No.1471 Sort Queries
ユーザー c-yanc-yan
提出日時 2021-04-10 20:38:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-06-26 09:15:30
合計ジャッジ時間 4,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 59 ms
12,160 KB
testcase_14 AC 58 ms
11,648 KB
testcase_15 AC 75 ms
11,904 KB
testcase_16 AC 58 ms
11,008 KB
testcase_17 AC 53 ms
11,776 KB
testcase_18 AC 47 ms
11,648 KB
testcase_19 AC 58 ms
11,264 KB
testcase_20 AC 78 ms
11,904 KB
testcase_21 AC 55 ms
11,648 KB
testcase_22 AC 51 ms
11,776 KB
testcase_23 AC 91 ms
13,184 KB
testcase_24 AC 91 ms
13,184 KB
testcase_25 AC 121 ms
13,184 KB
testcase_26 AC 97 ms
12,416 KB
testcase_27 AC 102 ms
13,696 KB
testcase_28 AC 104 ms
13,824 KB
testcase_29 AC 95 ms
12,544 KB
testcase_30 AC 90 ms
12,928 KB
testcase_31 AC 124 ms
12,800 KB
testcase_32 AC 128 ms
12,544 KB
testcase_33 AC 143 ms
13,696 KB
testcase_34 AC 143 ms
13,696 KB
testcase_35 AC 142 ms
13,824 KB
testcase_36 AC 95 ms
13,824 KB
testcase_37 AC 95 ms
13,824 KB
testcase_38 AC 108 ms
13,952 KB
testcase_39 AC 138 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N, Q = map(int, readline().split())
S = readline()[:-1].encode('us-ascii')

a = [0] * 26
b = []
for c in S:
    i = c - 97
    a[i] += 1
    b.append(a[:])

result = []
for _ in range(Q):
    L, R, X = map(int, readline().split())
    L, R = L - 1, R - 1
    t = b[R][:]
    if L != 0:
        u = b[L - 1]
        for i in range(26):
            t[i] -= u[i]
    c = 0
    for i in range(26):
        c += t[i]
        if c < X:
            continue
        result.append(chr(i + 97))
        break
print(*result, sep='\n')
0