結果

問題 No.1471 Sort Queries
ユーザー lloyzlloyz
提出日時 2022-01-26 23:11:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-06 06:41:54
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 87 ms
12,288 KB
testcase_14 AC 87 ms
12,032 KB
testcase_15 AC 112 ms
12,032 KB
testcase_16 AC 68 ms
11,136 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 AC 71 ms
12,032 KB
testcase_19 AC 68 ms
11,264 KB
testcase_20 AC 110 ms
12,160 KB
testcase_21 AC 80 ms
12,032 KB
testcase_22 AC 79 ms
11,904 KB
testcase_23 AC 150 ms
13,312 KB
testcase_24 AC 151 ms
13,184 KB
testcase_25 AC 187 ms
13,440 KB
testcase_26 AC 152 ms
12,544 KB
testcase_27 AC 177 ms
14,080 KB
testcase_28 AC 187 ms
13,952 KB
testcase_29 AC 145 ms
12,672 KB
testcase_30 AC 145 ms
13,056 KB
testcase_31 AC 203 ms
13,056 KB
testcase_32 AC 183 ms
12,544 KB
testcase_33 AC 233 ms
14,080 KB
testcase_34 AC 227 ms
13,952 KB
testcase_35 AC 221 ms
13,952 KB
testcase_36 AC 226 ms
14,080 KB
testcase_37 AC 236 ms
14,080 KB
testcase_38 AC 182 ms
14,336 KB
testcase_39 AC 237 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
S = input()
DP = [[0 for _ in range(26)] for _ in range(n + 1)]
for i in range(n):
    idx = ord(S[i]) - ord('a')
    for j in range(26):
        if j == idx:
            DP[i + 1][j] = DP[i][j] + 1
        else:
            DP[i + 1][j] = DP[i][j]

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