結果

問題 No.1471 Sort Queries
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-09 21:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 79,828 KB
最終ジャッジ日時 2024-06-25 04:30:55
合計ジャッジ時間 4,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 43 ms
59,904 KB
testcase_04 AC 38 ms
53,288 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 37 ms
52,864 KB
testcase_08 AC 45 ms
60,928 KB
testcase_09 AC 44 ms
59,264 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 44 ms
60,032 KB
testcase_13 AC 67 ms
71,168 KB
testcase_14 AC 65 ms
70,400 KB
testcase_15 AC 75 ms
73,088 KB
testcase_16 AC 67 ms
71,396 KB
testcase_17 AC 64 ms
69,760 KB
testcase_18 AC 62 ms
68,864 KB
testcase_19 AC 66 ms
69,504 KB
testcase_20 AC 76 ms
72,960 KB
testcase_21 AC 67 ms
72,448 KB
testcase_22 AC 65 ms
69,760 KB
testcase_23 AC 92 ms
78,848 KB
testcase_24 AC 93 ms
78,592 KB
testcase_25 AC 96 ms
79,104 KB
testcase_26 AC 95 ms
78,180 KB
testcase_27 AC 96 ms
79,696 KB
testcase_28 AC 98 ms
79,420 KB
testcase_29 AC 93 ms
78,080 KB
testcase_30 AC 85 ms
78,720 KB
testcase_31 AC 101 ms
78,592 KB
testcase_32 AC 100 ms
78,124 KB
testcase_33 AC 105 ms
79,328 KB
testcase_34 AC 106 ms
79,828 KB
testcase_35 AC 106 ms
79,616 KB
testcase_36 AC 105 ms
79,616 KB
testcase_37 AC 102 ms
79,308 KB
testcase_38 AC 108 ms
79,744 KB
testcase_39 AC 92 ms
79,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
S = input()
dp = [[0]*26]
for s in S:
    ndp = [0]*26
    ndp[ord(s)-ord("a")] += 1
    for i in range(26):
        ndp[i] += dp[-1][i]
    dp.append(ndp)

for i in range(q):
    l,r,x = map(int,input().split())
    count = 0
    for j in range(26):
        count += dp[r][j]-dp[l-1][j]
        if count >= x:
            print(chr(ord("a")+j))
            break
0