結果

問題 No.1471 Sort Queries
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-08 13:51:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-09-21 05:05:20
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 114 ms
11,520 KB
testcase_14 AC 104 ms
11,392 KB
testcase_15 AC 132 ms
11,520 KB
testcase_16 AC 73 ms
11,008 KB
testcase_17 AC 103 ms
11,648 KB
testcase_18 AC 88 ms
11,392 KB
testcase_19 AC 78 ms
11,008 KB
testcase_20 AC 134 ms
11,648 KB
testcase_21 AC 100 ms
11,392 KB
testcase_22 AC 97 ms
11,392 KB
testcase_23 AC 196 ms
13,312 KB
testcase_24 AC 191 ms
13,184 KB
testcase_25 AC 242 ms
13,696 KB
testcase_26 AC 171 ms
11,904 KB
testcase_27 AC 243 ms
15,232 KB
testcase_28 AC 241 ms
15,104 KB
testcase_29 AC 174 ms
11,904 KB
testcase_30 AC 191 ms
12,928 KB
testcase_31 AC 226 ms
12,416 KB
testcase_32 AC 210 ms
11,904 KB
testcase_33 AC 275 ms
15,360 KB
testcase_34 AC 303 ms
15,360 KB
testcase_35 AC 302 ms
15,360 KB
testcase_36 AC 270 ms
15,360 KB
testcase_37 AC 264 ms
15,488 KB
testcase_38 AC 214 ms
13,056 KB
testcase_39 AC 267 ms
14,976 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