結果

問題 No.1471 Sort Queries
ユーザー ntudantuda
提出日時 2024-11-22 21:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-11-22 21:42:50
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 45 ms
57,344 KB
testcase_04 AC 42 ms
52,992 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
52,864 KB
testcase_08 AC 49 ms
59,136 KB
testcase_09 AC 46 ms
57,600 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 43 ms
52,352 KB
testcase_12 AC 46 ms
58,112 KB
testcase_13 AC 84 ms
77,696 KB
testcase_14 AC 79 ms
77,696 KB
testcase_15 AC 98 ms
77,440 KB
testcase_16 AC 75 ms
72,704 KB
testcase_17 AC 79 ms
77,824 KB
testcase_18 AC 76 ms
77,312 KB
testcase_19 AC 73 ms
72,192 KB
testcase_20 AC 85 ms
77,312 KB
testcase_21 AC 80 ms
78,080 KB
testcase_22 AC 76 ms
77,816 KB
testcase_23 AC 101 ms
78,208 KB
testcase_24 AC 102 ms
78,336 KB
testcase_25 AC 110 ms
78,720 KB
testcase_26 AC 101 ms
78,080 KB
testcase_27 AC 140 ms
80,000 KB
testcase_28 AC 106 ms
79,872 KB
testcase_29 AC 102 ms
77,864 KB
testcase_30 AC 94 ms
78,080 KB
testcase_31 AC 111 ms
77,952 KB
testcase_32 AC 110 ms
77,568 KB
testcase_33 AC 116 ms
79,872 KB
testcase_34 AC 117 ms
79,488 KB
testcase_35 AC 117 ms
79,744 KB
testcase_36 AC 112 ms
80,256 KB
testcase_37 AC 113 ms
80,000 KB
testcase_38 AC 125 ms
80,256 KB
testcase_39 AC 100 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N, Q = map(int, input().split())
S = input()
D = [[0] * (N + 1) for _ in range(26)]
for i, s in enumerate(S,start = 1):
    D[ord(s) - 97][i] = 1
for i in range(26):
    D[i] = list(accumulate(D[i]))
for _ in range(Q):
    l, r, x = map(int, input().split())
    cnt = 0
    for i in range(26):
        cnt += D[i][r] - D[i][l - 1]
        if x <= cnt:
            print(chr(97 + i))
            break
0