結果

問題 No.1471 Sort Queries
ユーザー ygd.ygd.
提出日時 2021-04-09 23:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 1,033 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,908 KB
最終ジャッジ日時 2024-06-25 12:18:38
合計ジャッジ時間 4,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 44 ms
58,624 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 40 ms
52,992 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 44 ms
59,904 KB
testcase_09 AC 45 ms
58,240 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 46 ms
60,160 KB
testcase_13 AC 81 ms
77,680 KB
testcase_14 AC 76 ms
77,092 KB
testcase_15 AC 86 ms
77,312 KB
testcase_16 AC 72 ms
72,960 KB
testcase_17 AC 76 ms
76,928 KB
testcase_18 AC 73 ms
77,052 KB
testcase_19 AC 73 ms
72,576 KB
testcase_20 AC 83 ms
77,860 KB
testcase_21 AC 78 ms
77,440 KB
testcase_22 AC 75 ms
77,184 KB
testcase_23 AC 97 ms
78,208 KB
testcase_24 AC 98 ms
77,952 KB
testcase_25 AC 109 ms
78,188 KB
testcase_26 AC 98 ms
78,208 KB
testcase_27 AC 102 ms
78,044 KB
testcase_28 AC 102 ms
77,952 KB
testcase_29 AC 106 ms
77,840 KB
testcase_30 AC 91 ms
77,952 KB
testcase_31 AC 111 ms
77,952 KB
testcase_32 AC 107 ms
77,952 KB
testcase_33 AC 117 ms
78,848 KB
testcase_34 AC 116 ms
78,908 KB
testcase_35 AC 115 ms
78,848 KB
testcase_36 AC 107 ms
78,720 KB
testcase_37 AC 107 ms
78,720 KB
testcase_38 AC 109 ms
78,720 KB
testcase_39 AC 99 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
S = str(input())
SA = []
for i in range(26):
    s_temp = [0]
    moji = chr(i+97)
    for j in range(N):
        if S[j] == moji:
            temp = s_temp[-1] + 1
        else:
            temp = s_temp[-1]
        s_temp.append(temp)
    SA.append(s_temp)
#print(SA)

for i in range(Q):
    l,r,x = map(int,input().split())
    l-=1;r-=1
    cnt = 0
    for j in range(26):
        temp = SA[j][r+1] - SA[j][l]
        cnt += temp
        if cnt >= x:
            ans = chr(j+97)
            break
    print(ans)
0