結果

問題 No.1471 Sort Queries
ユーザー otsunekootsuneko
提出日時 2021-05-04 13:49:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 80,248 KB
最終ジャッジ日時 2024-07-23 09:09:26
合計ジャッジ時間 4,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,668 KB
testcase_01 AC 37 ms
52,732 KB
testcase_02 AC 38 ms
53,964 KB
testcase_03 AC 38 ms
52,932 KB
testcase_04 AC 39 ms
53,304 KB
testcase_05 AC 39 ms
53,656 KB
testcase_06 AC 37 ms
52,704 KB
testcase_07 AC 40 ms
52,724 KB
testcase_08 AC 42 ms
60,056 KB
testcase_09 AC 37 ms
53,932 KB
testcase_10 AC 39 ms
52,744 KB
testcase_11 AC 40 ms
53,416 KB
testcase_12 AC 40 ms
54,000 KB
testcase_13 AC 69 ms
72,116 KB
testcase_14 AC 66 ms
70,636 KB
testcase_15 AC 74 ms
74,304 KB
testcase_16 AC 68 ms
72,780 KB
testcase_17 AC 63 ms
70,640 KB
testcase_18 AC 62 ms
69,272 KB
testcase_19 AC 66 ms
70,376 KB
testcase_20 AC 77 ms
73,672 KB
testcase_21 AC 70 ms
72,492 KB
testcase_22 AC 65 ms
70,636 KB
testcase_23 AC 92 ms
79,148 KB
testcase_24 AC 92 ms
79,332 KB
testcase_25 AC 100 ms
79,268 KB
testcase_26 AC 93 ms
78,380 KB
testcase_27 AC 97 ms
79,824 KB
testcase_28 AC 96 ms
79,428 KB
testcase_29 AC 92 ms
78,508 KB
testcase_30 AC 84 ms
78,736 KB
testcase_31 AC 100 ms
78,788 KB
testcase_32 AC 104 ms
78,228 KB
testcase_33 AC 107 ms
79,752 KB
testcase_34 AC 106 ms
80,248 KB
testcase_35 AC 105 ms
79,632 KB
testcase_36 AC 102 ms
79,972 KB
testcase_37 AC 102 ms
79,888 KB
testcase_38 AC 108 ms
80,044 KB
testcase_39 AC 90 ms
79,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

alpha = [0]*26
cumsum = [alpha[:]]
for s in S:
    idx = ord(s)-97
    alpha[idx] += 1
    cumsum.append(alpha[:])

for _ in range(Q):
    l,r,x = map(int,input().split())

    chr_list = [0]*26

    cnt = 0
    for i in range(26):
        chr_list[i] = cumsum[r][i] - cumsum[l-1][i]
        cnt += chr_list[i]
        if cnt >= x:
            print(chr(97+i))
            break
0