結果

問題 No.1471 Sort Queries
ユーザー Eki1009Eki1009
提出日時 2021-04-09 21:28:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 78,616 KB
最終ジャッジ日時 2024-06-25 04:10:50
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,068 KB
testcase_01 AC 38 ms
53,156 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 43 ms
61,912 KB
testcase_04 AC 39 ms
54,696 KB
testcase_05 AC 38 ms
52,772 KB
testcase_06 AC 38 ms
53,040 KB
testcase_07 AC 38 ms
53,252 KB
testcase_08 AC 44 ms
62,072 KB
testcase_09 AC 42 ms
59,204 KB
testcase_10 AC 38 ms
54,016 KB
testcase_11 AC 38 ms
54,404 KB
testcase_12 AC 43 ms
60,664 KB
testcase_13 AC 68 ms
71,768 KB
testcase_14 AC 65 ms
70,800 KB
testcase_15 AC 77 ms
72,840 KB
testcase_16 AC 68 ms
72,420 KB
testcase_17 AC 65 ms
70,440 KB
testcase_18 AC 62 ms
69,264 KB
testcase_19 AC 66 ms
69,332 KB
testcase_20 AC 73 ms
71,748 KB
testcase_21 AC 67 ms
72,320 KB
testcase_22 AC 65 ms
70,192 KB
testcase_23 AC 91 ms
78,228 KB
testcase_24 AC 92 ms
77,864 KB
testcase_25 AC 100 ms
78,180 KB
testcase_26 AC 95 ms
77,900 KB
testcase_27 AC 98 ms
78,244 KB
testcase_28 AC 99 ms
78,380 KB
testcase_29 AC 93 ms
77,860 KB
testcase_30 AC 77 ms
74,640 KB
testcase_31 AC 97 ms
77,748 KB
testcase_32 AC 100 ms
77,576 KB
testcase_33 AC 102 ms
78,280 KB
testcase_34 AC 104 ms
78,480 KB
testcase_35 AC 104 ms
78,388 KB
testcase_36 AC 103 ms
78,368 KB
testcase_37 AC 101 ms
78,616 KB
testcase_38 AC 108 ms
78,484 KB
testcase_39 AC 89 ms
78,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
S = input()
d = 26
C = [[0]*(n+1) for _ in range(d)]
for i, s in enumerate(S):
    for j in range(d):
        C[j][i+1] += C[j][i]
    c = ord(s) - ord('a')
    C[c][i+1] += 1
for _ in range(q):
    l, r, x = map(int, input().split())
    l -= 1
    for j in range(d):
        x -= C[j][r] - C[j][l]
        if x <= 0:
            break
    print(chr(j + ord('a')))
0