結果

問題 No.1471 Sort Queries
ユーザー TnaTna
提出日時 2022-08-10 15:20:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 549 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 145,968 KB
最終ジャッジ日時 2024-09-21 02:13:31
合計ジャッジ時間 19,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,936 KB
testcase_01 AC 36 ms
55,352 KB
testcase_02 AC 37 ms
55,280 KB
testcase_03 AC 43 ms
62,612 KB
testcase_04 AC 41 ms
56,196 KB
testcase_05 AC 39 ms
56,616 KB
testcase_06 AC 37 ms
54,380 KB
testcase_07 AC 38 ms
54,976 KB
testcase_08 AC 45 ms
61,672 KB
testcase_09 AC 39 ms
55,700 KB
testcase_10 AC 42 ms
54,664 KB
testcase_11 AC 39 ms
54,752 KB
testcase_12 AC 45 ms
62,160 KB
testcase_13 AC 294 ms
79,292 KB
testcase_14 AC 280 ms
78,144 KB
testcase_15 AC 448 ms
80,012 KB
testcase_16 AC 189 ms
77,472 KB
testcase_17 AC 229 ms
78,336 KB
testcase_18 AC 199 ms
77,688 KB
testcase_19 AC 203 ms
78,136 KB
testcase_20 AC 455 ms
80,440 KB
testcase_21 AC 250 ms
77,932 KB
testcase_22 AC 219 ms
77,592 KB
testcase_23 AC 799 ms
84,244 KB
testcase_24 AC 804 ms
85,648 KB
testcase_25 AC 1,235 ms
89,308 KB
testcase_26 AC 699 ms
83,500 KB
testcase_27 AC 1,167 ms
90,852 KB
testcase_28 AC 1,068 ms
89,780 KB
testcase_29 AC 690 ms
82,788 KB
testcase_30 AC 732 ms
83,048 KB
testcase_31 AC 1,119 ms
88,124 KB
testcase_32 AC 928 ms
85,152 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N, Q = [int(x) for x in input().split()]
S = input()
queries = [[int(x) for x in input().split()] for _ in range(Q)]
# print(queries)
for x in queries:
    string_data = S[x[0]-1:x[1]]

    # print(string_data)
    # print(list(string_data))
    # print(sorted(list(string_data)))
    # print(sorted(list(string_data))[x[2]-1])

    word = ""
    res = collections.Counter(list(string_data))
    for i, (k, v) in enumerate(sorted(res.items())):
        if i > x[2]:
            break
        word += k * v
    print(word[x[2]-1])
0