結果

問題 No.1471 Sort Queries
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-08 13:51:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-09-21 05:05:25
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 45 ms
59,136 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 47 ms
60,160 KB
testcase_09 AC 43 ms
59,136 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 45 ms
52,992 KB
testcase_12 AC 49 ms
60,288 KB
testcase_13 AC 75 ms
70,784 KB
testcase_14 AC 72 ms
70,272 KB
testcase_15 AC 82 ms
72,704 KB
testcase_16 AC 73 ms
71,424 KB
testcase_17 AC 71 ms
69,504 KB
testcase_18 AC 67 ms
68,352 KB
testcase_19 AC 73 ms
70,144 KB
testcase_20 AC 80 ms
71,552 KB
testcase_21 AC 72 ms
71,168 KB
testcase_22 AC 69 ms
69,376 KB
testcase_23 AC 100 ms
78,188 KB
testcase_24 AC 99 ms
78,124 KB
testcase_25 AC 109 ms
78,336 KB
testcase_26 AC 101 ms
77,900 KB
testcase_27 AC 104 ms
78,616 KB
testcase_28 AC 107 ms
78,208 KB
testcase_29 AC 101 ms
77,960 KB
testcase_30 AC 86 ms
74,240 KB
testcase_31 AC 107 ms
78,080 KB
testcase_32 AC 108 ms
77,964 KB
testcase_33 AC 110 ms
78,664 KB
testcase_34 AC 114 ms
78,464 KB
testcase_35 AC 114 ms
78,528 KB
testcase_36 AC 109 ms
78,836 KB
testcase_37 AC 110 ms
78,544 KB
testcase_38 AC 114 ms
79,104 KB
testcase_39 AC 110 ms
78,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alp='abcdefghijklmnopqrstuvwxyz'
n,q=map(int,input().split())
s=input()
cnt=[[0]*(n+1) for _ in range(26)]
for i in range(26):
    ch=alp[i]
    for j in range(n):
        if s[j]==ch:
            cnt[i][j+1]+=1
for i in range(26):
    for j in range(n):
        cnt[i][j+1]+=cnt[i][j]
for _ in range(q):
    l,r,x=map(int,input().split())
    tmp=0
    for i in range(26):
        tmp+=cnt[i][r]-cnt[i][l-1]
        if tmp>=x:
            print(alp[i])
            break
0