結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,332 KB
testcase_01 AC 39 ms
52,132 KB
testcase_02 AC 40 ms
52,868 KB
testcase_03 AC 46 ms
60,228 KB
testcase_04 AC 42 ms
52,984 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 41 ms
52,404 KB
testcase_08 AC 51 ms
61,096 KB
testcase_09 AC 47 ms
59,548 KB
testcase_10 AC 42 ms
52,704 KB
testcase_11 AC 41 ms
53,084 KB
testcase_12 AC 47 ms
61,396 KB
testcase_13 AC 77 ms
71,964 KB
testcase_14 AC 75 ms
72,100 KB
testcase_15 AC 82 ms
73,072 KB
testcase_16 AC 75 ms
72,988 KB
testcase_17 AC 73 ms
70,532 KB
testcase_18 AC 68 ms
69,112 KB
testcase_19 AC 71 ms
70,620 KB
testcase_20 AC 81 ms
73,408 KB
testcase_21 AC 74 ms
72,708 KB
testcase_22 AC 72 ms
70,112 KB
testcase_23 AC 102 ms
79,032 KB
testcase_24 AC 103 ms
78,784 KB
testcase_25 AC 107 ms
78,720 KB
testcase_26 AC 101 ms
78,316 KB
testcase_27 AC 107 ms
79,424 KB
testcase_28 AC 107 ms
79,512 KB
testcase_29 AC 101 ms
78,408 KB
testcase_30 AC 93 ms
78,560 KB
testcase_31 AC 110 ms
78,428 KB
testcase_32 AC 119 ms
78,308 KB
testcase_33 AC 111 ms
79,436 KB
testcase_34 AC 119 ms
79,584 KB
testcase_35 AC 115 ms
79,208 KB
testcase_36 AC 114 ms
79,208 KB
testcase_37 AC 113 ms
79,468 KB
testcase_38 AC 119 ms
79,472 KB
testcase_39 AC 99 ms
79,068 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