結果

問題 No.1471 Sort Queries
ユーザー yakeshibayakeshiba
提出日時 2021-06-09 21:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-05-06 15:20:08
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,140 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 44 ms
59,264 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 44 ms
60,672 KB
testcase_09 AC 41 ms
58,880 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 41 ms
53,120 KB
testcase_12 AC 44 ms
59,392 KB
testcase_13 AC 79 ms
70,912 KB
testcase_14 AC 71 ms
70,272 KB
testcase_15 AC 81 ms
72,960 KB
testcase_16 AC 74 ms
71,296 KB
testcase_17 AC 70 ms
70,144 KB
testcase_18 AC 67 ms
69,376 KB
testcase_19 AC 73 ms
69,888 KB
testcase_20 AC 77 ms
72,960 KB
testcase_21 AC 73 ms
71,680 KB
testcase_22 AC 70 ms
70,016 KB
testcase_23 AC 99 ms
78,616 KB
testcase_24 AC 95 ms
78,764 KB
testcase_25 AC 102 ms
78,848 KB
testcase_26 AC 101 ms
78,080 KB
testcase_27 AC 103 ms
79,232 KB
testcase_28 AC 105 ms
79,104 KB
testcase_29 AC 103 ms
78,336 KB
testcase_30 AC 92 ms
78,592 KB
testcase_31 AC 110 ms
78,836 KB
testcase_32 AC 105 ms
78,204 KB
testcase_33 AC 108 ms
79,360 KB
testcase_34 AC 115 ms
79,232 KB
testcase_35 AC 109 ms
79,232 KB
testcase_36 AC 105 ms
79,360 KB
testcase_37 AC 106 ms
79,360 KB
testcase_38 AC 116 ms
79,616 KB
testcase_39 AC 107 ms
79,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int,input().split())
S = input()

alp = [[0]*26 for _ in range(n+1)]
for i,s in enumerate(S):
    i += 1
    for j in range(26):
        alp[i][j] = alp[i-1][j]
    alp[i][ord(s)-ord("a")] += 1
    

for j in range(q):
    l, r, x = map(int,input().split())
    now = 0
    for i in range(26):
        now += alp[r][i]-alp[l-1][i]
        if now >= x:
            print(chr(i+ord("a")))
            break
0