結果

問題 No.1471 Sort Queries
ユーザー 330Xs330Xs
提出日時 2022-02-03 16:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-11 09:57:31
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 48 ms
61,184 KB
testcase_04 AC 60 ms
67,072 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 50 ms
62,080 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 41 ms
54,016 KB
testcase_12 AC 52 ms
61,696 KB
testcase_13 AC 98 ms
71,552 KB
testcase_14 AC 96 ms
73,088 KB
testcase_15 AC 136 ms
76,928 KB
testcase_16 AC 81 ms
71,296 KB
testcase_17 AC 89 ms
71,936 KB
testcase_18 AC 83 ms
71,936 KB
testcase_19 AC 88 ms
71,552 KB
testcase_20 AC 122 ms
74,752 KB
testcase_21 AC 103 ms
72,192 KB
testcase_22 AC 89 ms
71,936 KB
testcase_23 AC 192 ms
76,928 KB
testcase_24 AC 204 ms
77,056 KB
testcase_25 AC 238 ms
76,928 KB
testcase_26 AC 190 ms
76,928 KB
testcase_27 AC 243 ms
77,184 KB
testcase_28 AC 239 ms
77,184 KB
testcase_29 AC 182 ms
76,672 KB
testcase_30 AC 182 ms
76,800 KB
testcase_31 AC 257 ms
77,056 KB
testcase_32 AC 451 ms
76,928 KB
testcase_33 AC 268 ms
77,312 KB
testcase_34 AC 353 ms
76,928 KB
testcase_35 AC 358 ms
77,312 KB
testcase_36 AC 218 ms
76,928 KB
testcase_37 AC 217 ms
77,184 KB
testcase_38 AC 253 ms
77,184 KB
testcase_39 AC 257 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
s = list(map(str,input()))
ss = sorted(s)
d = defaultdict(list)
for i in range(n):
    d[s[i]].append(i+1)

dd = sorted(d.items())
for _ in range(m):
    a,b,c = map(int,input().split())
    cnt = 0
    flag = False
    for key,lis in dd:
        for v in lis:
            if(a <= v <= b):
                cnt += 1
            if(cnt == c):
                print(key)
                flag = True
                break
        if(flag):
            break
            
0