結果

問題 No.1471 Sort Queries
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-03 05:08:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,688 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-07-21 15:24:55
合計ジャッジ時間 25,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 29 ms
11,008 KB
testcase_13 AC 428 ms
21,632 KB
testcase_14 AC 346 ms
20,096 KB
testcase_15 AC 385 ms
20,608 KB
testcase_16 AC 96 ms
13,312 KB
testcase_17 AC 371 ms
20,736 KB
testcase_18 AC 321 ms
19,840 KB
testcase_19 AC 112 ms
14,080 KB
testcase_20 AC 411 ms
20,992 KB
testcase_21 AC 335 ms
19,840 KB
testcase_22 AC 326 ms
19,840 KB
testcase_23 AC 1,067 ms
29,056 KB
testcase_24 AC 1,065 ms
29,312 KB
testcase_25 AC 1,209 ms
30,208 KB
testcase_26 AC 649 ms
24,064 KB
testcase_27 AC 1,613 ms
34,048 KB
testcase_28 AC 1,560 ms
33,536 KB
testcase_29 AC 676 ms
24,576 KB
testcase_30 AC 1,021 ms
28,672 KB
testcase_31 AC 961 ms
27,648 KB
testcase_32 AC 638 ms
23,424 KB
testcase_33 AC 1,673 ms
34,304 KB
testcase_34 AC 1,688 ms
34,432 KB
testcase_35 AC 1,688 ms
34,432 KB
testcase_36 AC 1,665 ms
34,432 KB
testcase_37 AC 1,681 ms
34,304 KB
testcase_38 AC 952 ms
34,304 KB
testcase_39 AC 981 ms
34,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
S = input()

alpha =['a','b','c','d','e','f','g','h','i','j','k','l','m','n',
        'o','p','q','r','s','t','u','v','w','x','y','z']

data = [[[0] for k in range(26)] for _ in range(N)]

for i in range(N):
    for k in range(26):
        data[i][k] = S.count(alpha[k], 0, i+1)

a = [0]*26

for i in range(Q):
    l, r, x = list(map(int, input().split()))
    if l > 1:
        DATA = data[l-2]
    else:
        DATA = a

    d = data[r-1][0] - DATA[0]
    for j in range(26):
        if d >= x:
            print(alpha[j])
            break
        d += data[r-1][j+1] - DATA[j+1]
0