結果

問題 No.1471 Sort Queries
ユーザー FromBooskaFromBooska
提出日時 2023-09-25 12:15:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 79,760 KB
最終ジャッジ日時 2024-07-18 09:48:04
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,344 KB
testcase_01 AC 34 ms
52,428 KB
testcase_02 AC 35 ms
53,572 KB
testcase_03 AC 39 ms
61,164 KB
testcase_04 AC 36 ms
54,924 KB
testcase_05 AC 36 ms
54,516 KB
testcase_06 AC 35 ms
53,916 KB
testcase_07 AC 37 ms
52,768 KB
testcase_08 AC 43 ms
60,872 KB
testcase_09 AC 41 ms
59,952 KB
testcase_10 AC 37 ms
52,400 KB
testcase_11 AC 37 ms
52,952 KB
testcase_12 AC 41 ms
60,008 KB
testcase_13 AC 65 ms
72,924 KB
testcase_14 AC 64 ms
71,736 KB
testcase_15 AC 72 ms
74,128 KB
testcase_16 AC 65 ms
72,292 KB
testcase_17 AC 64 ms
71,660 KB
testcase_18 AC 61 ms
71,392 KB
testcase_19 AC 63 ms
70,892 KB
testcase_20 AC 76 ms
75,164 KB
testcase_21 AC 68 ms
73,668 KB
testcase_22 AC 62 ms
70,392 KB
testcase_23 AC 90 ms
78,768 KB
testcase_24 AC 90 ms
78,568 KB
testcase_25 AC 97 ms
78,688 KB
testcase_26 AC 98 ms
78,088 KB
testcase_27 AC 95 ms
79,296 KB
testcase_28 AC 100 ms
79,324 KB
testcase_29 AC 92 ms
78,284 KB
testcase_30 AC 85 ms
78,840 KB
testcase_31 AC 99 ms
78,720 KB
testcase_32 AC 97 ms
77,864 KB
testcase_33 AC 99 ms
79,500 KB
testcase_34 AC 99 ms
79,276 KB
testcase_35 AC 99 ms
79,340 KB
testcase_36 AC 96 ms
79,760 KB
testcase_37 AC 98 ms
79,084 KB
testcase_38 AC 101 ms
79,608 KB
testcase_39 AC 86 ms
79,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# その区間にどのアルファベットが何個あるかわかればいい
# ということはアルファベットのカウントをすればいい
# defaultdict(list)でもいいだろうがここではcount表を作る

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

alphabets = 'abcdefghijklmnopqrstuvwxyz'
dic = {}
for i in range(26):
    dic[alphabets[i]] = i

count = [[0]*26 for i in range(N+1)]

for i in range(1, N+1):
    s = S[i-1]
    s_num = dic[s]
    for j in range(26):
        if j == s_num:
            count[i][j] = count[i-1][j]+1
        else:
            count[i][j] = count[i-1][j]
    #print(count[i])
    
for q in range(Q):
    l, r, x = map(int, input().split())
    x_remainder = x
    for k in range(26):
        cnt = count[r][k] - count[l-1][k]
        if cnt < x_remainder:
            x_remainder -= cnt
        else:
            print(alphabets[k])
            break
    
    
    
0