結果

問題 No.1471 Sort Queries
ユーザー kept1994kept1994
提出日時 2021-09-01 00:25:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 297 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 134,768 KB
最終ジャッジ日時 2024-11-26 12:18:46
合計ジャッジ時間 34,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,556 KB
testcase_01 AC 36 ms
133,344 KB
testcase_02 AC 37 ms
59,228 KB
testcase_03 AC 38 ms
134,768 KB
testcase_04 AC 38 ms
60,460 KB
testcase_05 AC 38 ms
134,412 KB
testcase_06 AC 35 ms
59,908 KB
testcase_07 AC 37 ms
53,816 KB
testcase_08 AC 39 ms
53,504 KB
testcase_09 AC 37 ms
53,212 KB
testcase_10 AC 40 ms
53,096 KB
testcase_11 AC 38 ms
53,604 KB
testcase_12 AC 38 ms
52,776 KB
testcase_13 AC 343 ms
76,188 KB
testcase_14 AC 295 ms
76,700 KB
testcase_15 AC 492 ms
76,100 KB
testcase_16 AC 148 ms
76,004 KB
testcase_17 AC 259 ms
76,528 KB
testcase_18 AC 199 ms
76,028 KB
testcase_19 AC 175 ms
76,876 KB
testcase_20 AC 501 ms
76,204 KB
testcase_21 AC 275 ms
76,744 KB
testcase_22 AC 233 ms
76,276 KB
testcase_23 AC 1,048 ms
76,652 KB
testcase_24 AC 1,044 ms
76,504 KB
testcase_25 AC 1,666 ms
77,400 KB
testcase_26 AC 906 ms
76,692 KB
testcase_27 AC 1,534 ms
77,744 KB
testcase_28 AC 1,514 ms
77,296 KB
testcase_29 AC 899 ms
76,504 KB
testcase_30 AC 989 ms
77,352 KB
testcase_31 AC 1,551 ms
76,864 KB
testcase_32 AC 1,277 ms
76,468 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 404 ms
78,872 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