結果

問題 No.1471 Sort Queries
ユーザー 330Xs330Xs
提出日時 2022-02-03 16:53:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-11 09:57:37
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 50 ms
60,928 KB
testcase_04 AC 46 ms
54,528 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 55 ms
62,336 KB
testcase_09 AC 50 ms
60,544 KB
testcase_10 AC 42 ms
54,016 KB
testcase_11 AC 43 ms
54,528 KB
testcase_12 AC 51 ms
62,720 KB
testcase_13 AC 94 ms
77,696 KB
testcase_14 AC 94 ms
77,568 KB
testcase_15 AC 107 ms
77,312 KB
testcase_16 AC 93 ms
77,824 KB
testcase_17 AC 95 ms
77,696 KB
testcase_18 AC 88 ms
77,824 KB
testcase_19 AC 88 ms
77,440 KB
testcase_20 AC 97 ms
77,568 KB
testcase_21 AC 91 ms
77,568 KB
testcase_22 AC 91 ms
77,312 KB
testcase_23 AC 123 ms
78,464 KB
testcase_24 AC 118 ms
78,720 KB
testcase_25 AC 128 ms
79,488 KB
testcase_26 AC 115 ms
78,592 KB
testcase_27 AC 123 ms
80,000 KB
testcase_28 AC 129 ms
79,488 KB
testcase_29 AC 118 ms
78,464 KB
testcase_30 AC 119 ms
78,592 KB
testcase_31 AC 134 ms
78,720 KB
testcase_32 AC 124 ms
78,848 KB
testcase_33 AC 136 ms
80,000 KB
testcase_34 AC 136 ms
79,872 KB
testcase_35 AC 134 ms
80,000 KB
testcase_36 AC 131 ms
80,000 KB
testcase_37 AC 142 ms
80,000 KB
testcase_38 AC 124 ms
79,744 KB
testcase_39 AC 122 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
s = list(map(str,input()))
ss = sorted(s)
d = defaultdict(list)
for i in range(26):
    d[chr(97+i)].append(0)
    for j in range(n):
        if(s[j] == chr(97+i)):
            d[chr(97+i)].append(d[chr(97+i)][-1] + 1)
        else:
            d[chr(97+i)].append(d[chr(97+i)][-1])

for _ in range(m):
    a,b,c = map(int,input().split())
    cnt = 0
    for key in d:
        cnt += d[key][b] - d[key][a-1]
        if(cnt >= c):
            print(key)
            break
0