結果

問題 No.1471 Sort Queries
ユーザー MitarushiMitarushi
提出日時 2020-11-24 22:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 79,832 KB
最終ジャッジ日時 2024-05-09 10:01:02
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,936 KB
testcase_01 AC 35 ms
53,416 KB
testcase_02 AC 34 ms
52,368 KB
testcase_03 AC 39 ms
59,372 KB
testcase_04 AC 40 ms
59,400 KB
testcase_05 AC 39 ms
58,280 KB
testcase_06 AC 35 ms
52,740 KB
testcase_07 AC 38 ms
58,484 KB
testcase_08 AC 45 ms
60,268 KB
testcase_09 AC 37 ms
58,124 KB
testcase_10 AC 35 ms
52,948 KB
testcase_11 AC 40 ms
59,056 KB
testcase_12 AC 41 ms
61,180 KB
testcase_13 AC 77 ms
77,828 KB
testcase_14 AC 74 ms
77,636 KB
testcase_15 AC 79 ms
77,544 KB
testcase_16 AC 73 ms
76,768 KB
testcase_17 AC 76 ms
78,328 KB
testcase_18 AC 65 ms
74,396 KB
testcase_19 AC 73 ms
76,688 KB
testcase_20 AC 81 ms
77,532 KB
testcase_21 AC 75 ms
77,572 KB
testcase_22 AC 68 ms
74,868 KB
testcase_23 AC 98 ms
79,056 KB
testcase_24 AC 98 ms
78,908 KB
testcase_25 AC 105 ms
79,048 KB
testcase_26 AC 98 ms
78,656 KB
testcase_27 AC 102 ms
79,592 KB
testcase_28 AC 101 ms
79,608 KB
testcase_29 AC 94 ms
78,232 KB
testcase_30 AC 86 ms
78,460 KB
testcase_31 AC 106 ms
78,764 KB
testcase_32 AC 106 ms
78,280 KB
testcase_33 AC 108 ms
79,456 KB
testcase_34 AC 113 ms
79,624 KB
testcase_35 AC 110 ms
79,832 KB
testcase_36 AC 105 ms
79,752 KB
testcase_37 AC 102 ms
79,636 KB
testcase_38 AC 112 ms
79,508 KB
testcase_39 AC 96 ms
79,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = input()
cut = [[0] * 26]
for i in s:
    cut.append(cut[-1][:])
    cut[-1][ord(i) - ord('a')] += 1

for _ in range(q):
    l, r, x = [int(i) for i in input().split()]
    count = [cut[r][i] - cut[l-1][i] for i in range(26)]

    for ind, i in enumerate(count):
        if i >= x:
            print(chr(ind + ord("a")))
            break
        x -= i
0