結果

問題 No.1471 Sort Queries
ユーザー raven7959raven7959
提出日時 2021-10-12 08:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 79,536 KB
最終ジャッジ日時 2024-09-16 16:42:21
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,472 KB
testcase_01 AC 39 ms
52,804 KB
testcase_02 AC 38 ms
53,256 KB
testcase_03 AC 46 ms
62,176 KB
testcase_04 AC 48 ms
61,560 KB
testcase_05 AC 47 ms
59,188 KB
testcase_06 AC 38 ms
53,100 KB
testcase_07 AC 41 ms
59,396 KB
testcase_08 AC 53 ms
62,264 KB
testcase_09 AC 44 ms
60,752 KB
testcase_10 AC 38 ms
52,840 KB
testcase_11 AC 47 ms
59,940 KB
testcase_12 AC 47 ms
61,480 KB
testcase_13 AC 98 ms
78,072 KB
testcase_14 AC 99 ms
77,372 KB
testcase_15 AC 103 ms
77,824 KB
testcase_16 AC 96 ms
76,916 KB
testcase_17 AC 100 ms
77,956 KB
testcase_18 AC 95 ms
77,484 KB
testcase_19 AC 99 ms
77,128 KB
testcase_20 AC 105 ms
77,768 KB
testcase_21 AC 98 ms
77,552 KB
testcase_22 AC 94 ms
77,900 KB
testcase_23 AC 109 ms
78,812 KB
testcase_24 AC 112 ms
78,936 KB
testcase_25 AC 118 ms
79,088 KB
testcase_26 AC 107 ms
78,132 KB
testcase_27 AC 126 ms
79,492 KB
testcase_28 AC 113 ms
78,864 KB
testcase_29 AC 108 ms
78,220 KB
testcase_30 AC 111 ms
78,484 KB
testcase_31 AC 121 ms
78,832 KB
testcase_32 AC 122 ms
78,556 KB
testcase_33 AC 125 ms
79,292 KB
testcase_34 AC 128 ms
79,108 KB
testcase_35 AC 132 ms
79,380 KB
testcase_36 AC 119 ms
79,100 KB
testcase_37 AC 123 ms
79,064 KB
testcase_38 AC 107 ms
79,000 KB
testcase_39 AC 122 ms
79,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N,Q=map(int,input().split())
S=input()
nums=[[0]*26]
for s in S:
    res=[nums[-1][i] for i in range(26)]
    res[ord(s)-ord("a")]+=1
    nums.append(res)
for _ in range(Q):
    l,r,x=map(int,input().split())
    substring=[0]*26
    for i in range(26):
        substring[i]=nums[r][i]-nums[l-1][i]
    for i in range(25):
        substring[i+1]+=substring[i]
    print(chr(bisect_left(substring,x)+ord("a")))
0