結果

問題 No.1471 Sort Queries
ユーザー netyo715netyo715
提出日時 2021-04-09 22:12:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-06-25 05:45:30
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 87 ms
11,520 KB
testcase_14 AC 88 ms
11,520 KB
testcase_15 AC 105 ms
11,520 KB
testcase_16 AC 62 ms
11,008 KB
testcase_17 AC 84 ms
11,648 KB
testcase_18 AC 74 ms
11,264 KB
testcase_19 AC 65 ms
11,008 KB
testcase_20 AC 100 ms
11,648 KB
testcase_21 AC 80 ms
11,648 KB
testcase_22 AC 76 ms
11,264 KB
testcase_23 AC 146 ms
13,312 KB
testcase_24 AC 156 ms
13,440 KB
testcase_25 AC 186 ms
13,824 KB
testcase_26 AC 134 ms
12,032 KB
testcase_27 AC 186 ms
15,232 KB
testcase_28 AC 183 ms
15,104 KB
testcase_29 AC 134 ms
12,032 KB
testcase_30 AC 157 ms
13,056 KB
testcase_31 AC 183 ms
12,544 KB
testcase_32 AC 174 ms
11,904 KB
testcase_33 AC 227 ms
15,360 KB
testcase_34 AC 232 ms
15,360 KB
testcase_35 AC 230 ms
15,488 KB
testcase_36 AC 226 ms
15,488 KB
testcase_37 AC 235 ms
15,360 KB
testcase_38 AC 168 ms
12,928 KB
testcase_39 AC 220 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
S = input()

alp = [chr(ord("a")+i) for i in range(26)]
rui = {alp[i]: [0]*(N+1) for i in range(26)}

for i in range(N):
    for a in alp:
        if S[i]==a:
            rui[a][i] += 1
        rui[a][i] += rui[a][i-1]

anss = []
for _ in range(Q):
    L, R, X = map(int, input().split())
    c = 0
    for a in alp:
        c += rui[a][R-1]-rui[a][L-2]
        if c >= X:
            anss.append(a)
            break

for ans in anss:
    print(ans)
0