結果

問題 No.1471 Sort Queries
ユーザー H20H20
提出日時 2021-04-09 22:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-25 05:58:48
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 50 ms
57,600 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 49 ms
58,880 KB
testcase_09 AC 46 ms
57,728 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 43 ms
52,736 KB
testcase_12 AC 48 ms
58,368 KB
testcase_13 AC 91 ms
78,848 KB
testcase_14 AC 86 ms
78,336 KB
testcase_15 AC 95 ms
78,464 KB
testcase_16 AC 81 ms
73,088 KB
testcase_17 AC 85 ms
78,592 KB
testcase_18 AC 84 ms
78,208 KB
testcase_19 AC 83 ms
73,088 KB
testcase_20 AC 94 ms
78,336 KB
testcase_21 AC 88 ms
78,592 KB
testcase_22 AC 87 ms
78,464 KB
testcase_23 AC 108 ms
81,024 KB
testcase_24 AC 108 ms
80,000 KB
testcase_25 AC 117 ms
80,640 KB
testcase_26 AC 109 ms
78,976 KB
testcase_27 AC 114 ms
81,024 KB
testcase_28 AC 114 ms
81,024 KB
testcase_29 AC 108 ms
78,848 KB
testcase_30 AC 99 ms
78,976 KB
testcase_31 AC 115 ms
79,488 KB
testcase_32 AC 117 ms
78,592 KB
testcase_33 AC 119 ms
80,896 KB
testcase_34 AC 124 ms
80,896 KB
testcase_35 AC 123 ms
81,024 KB
testcase_36 AC 117 ms
80,896 KB
testcase_37 AC 119 ms
80,896 KB
testcase_38 AC 122 ms
81,280 KB
testcase_39 AC 107 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,Q = map(int,input().split())
S = input()
L = []
for i in range(26):
    L.append([0]*N)

for i in range(N):
    L[ord(S[i])-97][i] = 1

ACL = []
for i in range(26):
    ACL.append(list(itertools.accumulate(L[i]))+[0])

for _ in range(Q):
    l,r,x=map(int,input().split())
    l-=1
    r-=1
    for i in range(26):
        x-=ACL[i][r]-ACL[i][l-1]
        if x<=0:
            print(chr(i+97))
            break


0