結果

問題 No.1471 Sort Queries
ユーザー c-yanc-yan
提出日時 2021-04-09 22:33:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-25 06:11:01
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 56 ms
12,160 KB
testcase_14 AC 55 ms
11,904 KB
testcase_15 AC 73 ms
12,032 KB
testcase_16 AC 57 ms
11,264 KB
testcase_17 AC 50 ms
12,032 KB
testcase_18 AC 46 ms
11,904 KB
testcase_19 AC 57 ms
11,264 KB
testcase_20 AC 74 ms
12,160 KB
testcase_21 AC 54 ms
11,904 KB
testcase_22 AC 50 ms
11,904 KB
testcase_23 AC 88 ms
13,056 KB
testcase_24 AC 88 ms
13,184 KB
testcase_25 AC 115 ms
13,312 KB
testcase_26 AC 93 ms
12,416 KB
testcase_27 AC 99 ms
13,824 KB
testcase_28 AC 100 ms
13,824 KB
testcase_29 AC 90 ms
12,672 KB
testcase_30 AC 87 ms
13,056 KB
testcase_31 AC 116 ms
13,056 KB
testcase_32 AC 123 ms
12,544 KB
testcase_33 AC 141 ms
13,696 KB
testcase_34 AC 137 ms
13,824 KB
testcase_35 AC 135 ms
13,696 KB
testcase_36 AC 91 ms
13,824 KB
testcase_37 AC 93 ms
13,824 KB
testcase_38 AC 108 ms
14,336 KB
testcase_39 AC 137 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

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

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

result = []
for _ in range(Q):
    L, R, X = map(int, readline().split())
    t = b[R - 1][:]
    if L != 1:
        u = b[L - 2]
        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 + ord('a')))
        break
print(*result, sep='\n')
0