結果

問題 No.1471 Sort Queries
ユーザー gorugo30gorugo30
提出日時 2021-05-08 17:01:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-09-16 22:26:52
合計ジャッジ時間 4,882 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 43 ms
59,648 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 46 ms
60,288 KB
testcase_09 AC 43 ms
59,008 KB
testcase_10 AC 40 ms
52,468 KB
testcase_11 AC 39 ms
52,864 KB
testcase_12 AC 46 ms
59,520 KB
testcase_13 AC 74 ms
71,168 KB
testcase_14 AC 70 ms
71,040 KB
testcase_15 AC 80 ms
73,728 KB
testcase_16 AC 72 ms
71,680 KB
testcase_17 AC 72 ms
70,784 KB
testcase_18 AC 69 ms
69,632 KB
testcase_19 AC 73 ms
70,272 KB
testcase_20 AC 82 ms
72,960 KB
testcase_21 AC 72 ms
72,960 KB
testcase_22 AC 70 ms
70,016 KB
testcase_23 AC 97 ms
78,592 KB
testcase_24 AC 97 ms
78,592 KB
testcase_25 AC 106 ms
78,976 KB
testcase_26 AC 105 ms
77,952 KB
testcase_27 AC 107 ms
79,104 KB
testcase_28 AC 107 ms
79,616 KB
testcase_29 AC 100 ms
78,404 KB
testcase_30 AC 89 ms
78,576 KB
testcase_31 AC 107 ms
78,692 KB
testcase_32 AC 108 ms
78,208 KB
testcase_33 AC 111 ms
79,588 KB
testcase_34 AC 115 ms
79,512 KB
testcase_35 AC 113 ms
79,232 KB
testcase_36 AC 113 ms
78,976 KB
testcase_37 AC 110 ms
79,616 KB
testcase_38 AC 115 ms
79,616 KB
testcase_39 AC 96 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
S = input()
C = [[0] * (26) for i in range(N + 1)]
for i in range(N):
    for j in range(26):
        if j == ord(S[i]) - ord("a"):
            C[i + 1][j] = C[i][j] + 1
        else:
            C[i + 1][j] = C[i][j]

for q in range(Q):
    L, R, X = map(int, input().split())
    L -= 1
    n = 0
    for j in range(26):
        n += C[R][j] - C[L][j]
        if n >= X:
            print(chr(ord("a") + j))
            break
    
0