結果

問題 No.1471 Sort Queries
ユーザー stngstng
提出日時 2021-08-29 12:26:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 486 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,347,840 KB
最終ジャッジ日時 2024-11-22 04:53:44
合計ジャッジ時間 85,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
16,000 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 39 ms
18,852 KB
testcase_04 MLE -
testcase_05 AC 33 ms
16,256 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 38 ms
16,896 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 38 ms
18,852 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 MLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n,q = map(int,input().split())
s = input()
lrx = [[int(i)-1 for i in input().split()] for j in range(q)]

li = [[0 for i in range(n)] for j in range(n)]

for i in range(n):
    li[i][i] = [ord(s[i])]
    for j in range(i+1,n):
        tmp = ord(s[j])
        li[i][j] = li[i][j-1][:]
        #print(li[i][j])
        bisect.insort(li[i][j],tmp)
#print(li)
#exit()
for i in range(q):
    #print(li[lrx[i][0]][lrx[i][1]])
    print(chr(li[lrx[i][0]][lrx[i][1]][lrx[i][2]]))
0