結果

問題 No.1471 Sort Queries
ユーザー kept1994kept1994
提出日時 2021-09-01 00:24:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 297 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-26 12:18:07
合計ジャッジ時間 35,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,440 KB
testcase_01 AC 28 ms
17,700 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 32 ms
21,760 KB
testcase_04 AC 32 ms
17,568 KB
testcase_05 AC 29 ms
21,760 KB
testcase_06 AC 29 ms
17,572 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 316 ms
11,008 KB
testcase_14 AC 270 ms
10,880 KB
testcase_15 AC 490 ms
10,880 KB
testcase_16 AC 116 ms
10,624 KB
testcase_17 AC 230 ms
10,880 KB
testcase_18 AC 157 ms
11,008 KB
testcase_19 AC 145 ms
10,752 KB
testcase_20 AC 502 ms
10,880 KB
testcase_21 AC 247 ms
10,880 KB
testcase_22 AC 202 ms
10,880 KB
testcase_23 AC 1,082 ms
11,136 KB
testcase_24 AC 1,076 ms
11,008 KB
testcase_25 AC 1,737 ms
11,008 KB
testcase_26 AC 937 ms
11,008 KB
testcase_27 AC 1,582 ms
11,008 KB
testcase_28 AC 1,567 ms
11,008 KB
testcase_29 AC 947 ms
10,880 KB
testcase_30 AC 1,021 ms
10,880 KB
testcase_31 AC 1,641 ms
11,008 KB
testcase_32 AC 1,365 ms
10,880 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 778 ms
11,008 KB
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, Q = map(int,input().split())
    S = [ord(i) for i in list(input())]
    for _ in range(Q):
        L, R, X = map(lambda i : int(i) - 1,input().split())
        print(chr(sorted(S[L:(R + 1)])[X]))
        
if __name__ == '__main__':
    main()
0