結果

問題 No.1471 Sort Queries
ユーザー rodearodea
提出日時 2021-04-11 14:10:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-06-27 09:21:07
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 48 ms
60,672 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 51 ms
61,568 KB
testcase_09 AC 48 ms
59,136 KB
testcase_10 AC 39 ms
52,736 KB
testcase_11 AC 41 ms
53,120 KB
testcase_12 AC 48 ms
60,928 KB
testcase_13 AC 86 ms
77,568 KB
testcase_14 AC 84 ms
77,120 KB
testcase_15 AC 93 ms
77,264 KB
testcase_16 AC 86 ms
76,800 KB
testcase_17 AC 84 ms
77,440 KB
testcase_18 AC 76 ms
74,012 KB
testcase_19 AC 79 ms
73,984 KB
testcase_20 AC 92 ms
77,312 KB
testcase_21 AC 87 ms
77,872 KB
testcase_22 AC 77 ms
74,704 KB
testcase_23 AC 110 ms
78,848 KB
testcase_24 AC 111 ms
79,104 KB
testcase_25 AC 116 ms
78,976 KB
testcase_26 AC 109 ms
78,720 KB
testcase_27 AC 114 ms
79,104 KB
testcase_28 AC 116 ms
79,488 KB
testcase_29 AC 109 ms
78,412 KB
testcase_30 AC 101 ms
79,140 KB
testcase_31 AC 117 ms
78,720 KB
testcase_32 AC 123 ms
78,288 KB
testcase_33 AC 132 ms
79,232 KB
testcase_34 AC 124 ms
79,488 KB
testcase_35 AC 127 ms
79,200 KB
testcase_36 AC 122 ms
79,216 KB
testcase_37 AC 119 ms
79,488 KB
testcase_38 AC 123 ms
79,488 KB
testcase_39 AC 108 ms
79,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = input()

alpsum = [[0 for j in range(26)] for i in range(n + 1)]
for i in range(n):
    for j in range(26):
        alpsum[i + 1][j] += alpsum[i][j] + (j == ord(s[i]) - 97)

for i in range(q):
    l, r, x = map(int, input().split())
    l -= 1
    r -= 1
    for j in range(26):
        if alpsum[r + 1][j] - alpsum[l][j] >= x:
            print(chr(j + 97))
            break
        else:
            x -= alpsum[r + 1][j] - alpsum[l][j]
0