結果

問題 No.1471 Sort Queries
ユーザー flippergoflippergo
提出日時 2024-11-11 08:57:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-11-11 08:57:20
合計ジャッジ時間 5,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 45 ms
60,544 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 45 ms
52,352 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 49 ms
61,696 KB
testcase_09 AC 43 ms
59,904 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 39 ms
52,864 KB
testcase_12 AC 47 ms
60,800 KB
testcase_13 AC 88 ms
77,184 KB
testcase_14 AC 83 ms
76,928 KB
testcase_15 AC 94 ms
77,440 KB
testcase_16 AC 82 ms
76,800 KB
testcase_17 AC 84 ms
77,056 KB
testcase_18 AC 80 ms
77,184 KB
testcase_19 AC 82 ms
76,544 KB
testcase_20 AC 95 ms
77,440 KB
testcase_21 AC 106 ms
77,568 KB
testcase_22 AC 91 ms
77,056 KB
testcase_23 AC 115 ms
78,336 KB
testcase_24 AC 112 ms
77,952 KB
testcase_25 AC 123 ms
78,336 KB
testcase_26 AC 115 ms
77,696 KB
testcase_27 AC 120 ms
78,464 KB
testcase_28 AC 120 ms
78,592 KB
testcase_29 AC 111 ms
77,696 KB
testcase_30 AC 105 ms
78,208 KB
testcase_31 AC 143 ms
77,824 KB
testcase_32 AC 122 ms
77,824 KB
testcase_33 AC 132 ms
78,720 KB
testcase_34 AC 137 ms
78,848 KB
testcase_35 AC 132 ms
78,464 KB
testcase_36 AC 127 ms
78,592 KB
testcase_37 AC 132 ms
78,848 KB
testcase_38 AC 121 ms
78,336 KB
testcase_39 AC 135 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
S = "0"+input().strip()
C = {chr(i):[0 for _ in range(N+1)] for i in range(97,123)}
for i in range(1,N+1):
    for j in range(97,123):
        C[chr(j)][i] = C[chr(j)][i-1]
    C[S[i]][i] += 1
for _ in range(Q):
    l,r,x = map(int,input().split())
    cnt = 0
    for j in range(97,123):
        n = C[chr(j)][r]-C[chr(j)][l-1]
        if cnt+n>=x:
            print(chr(j))
            break
        cnt += n
0