結果

問題 No.1471 Sort Queries
ユーザー rlangevinrlangevin
提出日時 2023-01-01 01:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-05-05 05:45:46
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 49 ms
59,392 KB
testcase_04 AC 42 ms
52,608 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 44 ms
60,416 KB
testcase_09 AC 41 ms
58,752 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 43 ms
59,264 KB
testcase_13 AC 63 ms
69,120 KB
testcase_14 AC 61 ms
68,480 KB
testcase_15 AC 65 ms
70,272 KB
testcase_16 AC 60 ms
67,840 KB
testcase_17 AC 60 ms
67,840 KB
testcase_18 AC 59 ms
67,200 KB
testcase_19 AC 58 ms
67,200 KB
testcase_20 AC 64 ms
70,400 KB
testcase_21 AC 61 ms
69,120 KB
testcase_22 AC 61 ms
68,096 KB
testcase_23 AC 77 ms
75,136 KB
testcase_24 AC 80 ms
74,752 KB
testcase_25 AC 87 ms
79,872 KB
testcase_26 AC 84 ms
74,368 KB
testcase_27 AC 91 ms
80,384 KB
testcase_28 AC 83 ms
80,512 KB
testcase_29 AC 72 ms
73,984 KB
testcase_30 AC 68 ms
72,576 KB
testcase_31 AC 84 ms
79,360 KB
testcase_32 AC 82 ms
78,720 KB
testcase_33 AC 84 ms
80,768 KB
testcase_34 AC 86 ms
80,640 KB
testcase_35 AC 89 ms
80,512 KB
testcase_36 AC 84 ms
80,896 KB
testcase_37 AC 82 ms
80,512 KB
testcase_38 AC 82 ms
80,768 KB
testcase_39 AC 79 ms
80,256 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