結果

問題 No.1471 Sort Queries
ユーザー 👑 KazunKazun
提出日時 2021-04-09 21:34:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 79,888 KB
最終ジャッジ日時 2024-06-25 04:27:00
合計ジャッジ時間 4,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,284 KB
testcase_01 AC 54 ms
64,280 KB
testcase_02 AC 54 ms
64,520 KB
testcase_03 AC 55 ms
65,496 KB
testcase_04 AC 54 ms
65,704 KB
testcase_05 AC 53 ms
64,004 KB
testcase_06 AC 52 ms
64,936 KB
testcase_07 AC 53 ms
64,060 KB
testcase_08 AC 57 ms
66,444 KB
testcase_09 AC 56 ms
66,312 KB
testcase_10 AC 55 ms
64,812 KB
testcase_11 AC 55 ms
64,316 KB
testcase_12 AC 58 ms
66,632 KB
testcase_13 AC 73 ms
74,680 KB
testcase_14 AC 72 ms
74,664 KB
testcase_15 AC 83 ms
78,304 KB
testcase_16 AC 80 ms
78,220 KB
testcase_17 AC 71 ms
74,144 KB
testcase_18 AC 70 ms
74,300 KB
testcase_19 AC 72 ms
75,084 KB
testcase_20 AC 83 ms
78,412 KB
testcase_21 AC 74 ms
74,896 KB
testcase_22 AC 70 ms
73,956 KB
testcase_23 AC 91 ms
79,180 KB
testcase_24 AC 90 ms
79,160 KB
testcase_25 AC 94 ms
79,604 KB
testcase_26 AC 89 ms
78,832 KB
testcase_27 AC 93 ms
79,636 KB
testcase_28 AC 93 ms
79,888 KB
testcase_29 AC 87 ms
78,844 KB
testcase_30 AC 86 ms
79,216 KB
testcase_31 AC 93 ms
79,200 KB
testcase_32 AC 95 ms
78,724 KB
testcase_33 AC 95 ms
79,728 KB
testcase_34 AC 100 ms
79,648 KB
testcase_35 AC 98 ms
79,404 KB
testcase_36 AC 93 ms
79,696 KB
testcase_37 AC 94 ms
79,836 KB
testcase_38 AC 84 ms
79,688 KB
testcase_39 AC 89 ms
79,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from string import ascii_lowercase as ALPHABET

input=sys.stdin.readline

N,Q=map(int,input().split())
S="*"+input()

T={x:[0]*(N+1) for x in ALPHABET}

for x in ALPHABET:
    U=T[x]
    for i in range(1,N+1):
        if S[i]==x:
            U[i]=U[i-1]+1
        else:
            U[i]=U[i-1]

for _ in range(Q):
    L,R,X=map(int,input().split())

    K=0
    for x in ALPHABET:
        K+=T[x][R]-T[x][L-1]
        if K>=X:
            print(x)
            break
0