結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 36 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 34 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 36 ms
10,880 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 146 ms
11,648 KB
testcase_14 AC 139 ms
11,648 KB
testcase_15 AC 177 ms
11,520 KB
testcase_16 AC 99 ms
11,008 KB
testcase_17 AC 120 ms
11,520 KB
testcase_18 AC 108 ms
11,392 KB
testcase_19 AC 108 ms
11,136 KB
testcase_20 AC 177 ms
11,648 KB
testcase_21 AC 126 ms
11,520 KB
testcase_22 AC 115 ms
11,392 KB
testcase_23 AC 269 ms
13,312 KB
testcase_24 AC 272 ms
13,312 KB
testcase_25 AC 348 ms
13,696 KB
testcase_26 AC 247 ms
12,032 KB
testcase_27 AC 331 ms
15,232 KB
testcase_28 AC 318 ms
15,232 KB
testcase_29 AC 241 ms
11,776 KB
testcase_30 AC 254 ms
12,928 KB
testcase_31 AC 340 ms
12,672 KB
testcase_32 AC 309 ms
11,904 KB
testcase_33 AC 433 ms
15,488 KB
testcase_34 AC 439 ms
15,488 KB
testcase_35 AC 433 ms
15,616 KB
testcase_36 AC 395 ms
15,488 KB
testcase_37 AC 395 ms
15,488 KB
testcase_38 AC 316 ms
12,928 KB
testcase_39 AC 374 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())
    ans=''
    for i in range(26):
        ans+=alp[i]*(cnt[i][r]-cnt[i][l-1])
    print(ans[x-1])
0