結果

問題 No.1471 Sort Queries
ユーザー rlangevinrlangevin
提出日時 2023-01-01 01:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-11-26 23:59:13
合計ジャッジ時間 4,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 42 ms
58,752 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 44 ms
59,776 KB
testcase_09 AC 41 ms
58,624 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 40 ms
52,736 KB
testcase_12 AC 45 ms
59,264 KB
testcase_13 AC 63 ms
69,120 KB
testcase_14 AC 63 ms
68,224 KB
testcase_15 AC 66 ms
69,760 KB
testcase_16 AC 61 ms
68,096 KB
testcase_17 AC 62 ms
67,712 KB
testcase_18 AC 60 ms
67,328 KB
testcase_19 AC 59 ms
67,584 KB
testcase_20 AC 66 ms
69,504 KB
testcase_21 AC 64 ms
68,992 KB
testcase_22 AC 62 ms
67,968 KB
testcase_23 AC 75 ms
75,008 KB
testcase_24 AC 74 ms
74,624 KB
testcase_25 AC 85 ms
80,128 KB
testcase_26 AC 74 ms
74,112 KB
testcase_27 AC 85 ms
80,256 KB
testcase_28 AC 83 ms
80,256 KB
testcase_29 AC 72 ms
73,984 KB
testcase_30 AC 69 ms
72,960 KB
testcase_31 AC 82 ms
79,536 KB
testcase_32 AC 80 ms
78,752 KB
testcase_33 AC 85 ms
80,640 KB
testcase_34 AC 88 ms
80,768 KB
testcase_35 AC 87 ms
80,512 KB
testcase_36 AC 84 ms
80,256 KB
testcase_37 AC 83 ms
80,476 KB
testcase_38 AC 85 ms
80,768 KB
testcase_39 AC 77 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def alp_to_num(cha):
    num = ord(cha) - ord("a")
    return num

N, Q = map(int, readline().split())
S = list(input())
S = list(map(alp_to_num, S))
D = [[0] * N for i in range(26)]
Ac = [[0] * (N + 1) for i in range(26)]
for i in range(N):
    D[S[i]][i] = 1
    
for i in range(N):
    for k in range(26):
        Ac[k][i + 1] = Ac[k][i] + D[k][i]
        
for _ in range(Q):
    L, R, X = map(int, readline().split())
    L = L - 1
    cnt = 0
    for k in range(26):
        cnt += Ac[k][R] - Ac[k][L]
        if cnt >= X:
            print(chr(k + ord("a")))
            break
0