結果

問題 No.1471 Sort Queries
ユーザー 萩3萩3
提出日時 2021-05-02 20:46:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 80,168 KB
最終ジャッジ日時 2024-07-21 06:11:26
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 49 ms
61,056 KB
testcase_04 AC 48 ms
60,672 KB
testcase_05 AC 47 ms
59,520 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 45 ms
59,264 KB
testcase_08 AC 51 ms
62,336 KB
testcase_09 AC 45 ms
59,264 KB
testcase_10 AC 42 ms
53,760 KB
testcase_11 AC 48 ms
60,288 KB
testcase_12 AC 50 ms
61,568 KB
testcase_13 AC 82 ms
77,696 KB
testcase_14 AC 81 ms
77,824 KB
testcase_15 AC 87 ms
77,824 KB
testcase_16 AC 77 ms
77,312 KB
testcase_17 AC 83 ms
77,696 KB
testcase_18 AC 79 ms
77,440 KB
testcase_19 AC 79 ms
77,568 KB
testcase_20 AC 83 ms
77,696 KB
testcase_21 AC 80 ms
77,568 KB
testcase_22 AC 79 ms
77,864 KB
testcase_23 AC 92 ms
78,720 KB
testcase_24 AC 92 ms
78,848 KB
testcase_25 AC 98 ms
80,128 KB
testcase_26 AC 91 ms
78,208 KB
testcase_27 AC 96 ms
80,000 KB
testcase_28 AC 94 ms
79,232 KB
testcase_29 AC 92 ms
78,208 KB
testcase_30 AC 87 ms
78,720 KB
testcase_31 AC 99 ms
79,496 KB
testcase_32 AC 99 ms
79,232 KB
testcase_33 AC 98 ms
80,000 KB
testcase_34 AC 104 ms
80,168 KB
testcase_35 AC 105 ms
80,128 KB
testcase_36 AC 95 ms
80,000 KB
testcase_37 AC 96 ms
80,000 KB
testcase_38 AC 95 ms
80,000 KB
testcase_39 AC 93 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections
def resolve():
    readline = sys.stdin.readline
    n,q = map(int,readline().split())
    s = readline().strip()
    orda = ord('a')
    tmp = [0]*26
    sumchr = [None]*(len(s)+1)
    sumchr[0] = [0]* 26

    for i, c in enumerate(s,1):
        tmp[ord(c)-orda] += 1
        sumchr[i] = [cnt for cnt in tmp]

    deq = collections.deque()
    for _ in range(q):
        l,r,x = map(int,readline().split())
        chrcnt = [ri-li for li,ri in zip(sumchr[l-1],sumchr[r])]

        cnt = 0
        for i,cnti in enumerate(chrcnt,orda):
            cnt += cnti
            if x <= cnt:
                deq.append(chr(i))
                break
    print(*deq,sep='\n')
resolve()
0