結果

問題 No.1471 Sort Queries
ユーザー MitarushiMitarushi
提出日時 2020-11-24 22:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,696 KB
最終ジャッジ日時 2024-12-15 22:04:14
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 47 ms
58,240 KB
testcase_04 AC 50 ms
59,264 KB
testcase_05 AC 49 ms
58,240 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 45 ms
57,472 KB
testcase_08 AC 51 ms
59,776 KB
testcase_09 AC 45 ms
57,344 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 49 ms
59,392 KB
testcase_12 AC 50 ms
59,648 KB
testcase_13 AC 94 ms
77,408 KB
testcase_14 AC 90 ms
77,440 KB
testcase_15 AC 102 ms
77,568 KB
testcase_16 AC 90 ms
76,828 KB
testcase_17 AC 89 ms
78,080 KB
testcase_18 AC 79 ms
72,960 KB
testcase_19 AC 91 ms
76,800 KB
testcase_20 AC 98 ms
77,464 KB
testcase_21 AC 88 ms
77,696 KB
testcase_22 AC 81 ms
74,624 KB
testcase_23 AC 116 ms
78,888 KB
testcase_24 AC 115 ms
78,976 KB
testcase_25 AC 123 ms
78,900 KB
testcase_26 AC 116 ms
77,952 KB
testcase_27 AC 119 ms
79,488 KB
testcase_28 AC 119 ms
79,096 KB
testcase_29 AC 116 ms
78,336 KB
testcase_30 AC 103 ms
78,720 KB
testcase_31 AC 127 ms
78,480 KB
testcase_32 AC 127 ms
78,080 KB
testcase_33 AC 127 ms
79,232 KB
testcase_34 AC 132 ms
79,488 KB
testcase_35 AC 130 ms
79,696 KB
testcase_36 AC 127 ms
79,232 KB
testcase_37 AC 125 ms
79,232 KB
testcase_38 AC 136 ms
79,252 KB
testcase_39 AC 110 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = input()
cut = [[0] * 26]
for i in s:
    cut.append(cut[-1][:])
    cut[-1][ord(i) - ord('a')] += 1

for _ in range(q):
    l, r, x = [int(i) for i in input().split()]
    count = [cut[r][i] - cut[l-1][i] for i in range(26)]

    for ind, i in enumerate(count):
        if i >= x:
            print(chr(ind + ord("a")))
            break
        x -= i
0