結果

問題 No.1471 Sort Queries
ユーザー ThetaTheta
提出日時 2024-03-28 18:51:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 232 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 86,896 KB
最終ジャッジ日時 2024-09-30 14:49:52
合計ジャッジ時間 24,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,744 KB
testcase_01 AC 34 ms
53,552 KB
testcase_02 AC 34 ms
52,484 KB
testcase_03 AC 34 ms
53,356 KB
testcase_04 AC 33 ms
52,812 KB
testcase_05 AC 35 ms
52,620 KB
testcase_06 AC 33 ms
52,200 KB
testcase_07 AC 34 ms
53,764 KB
testcase_08 AC 35 ms
53,832 KB
testcase_09 AC 33 ms
52,864 KB
testcase_10 AC 34 ms
52,940 KB
testcase_11 AC 35 ms
52,892 KB
testcase_12 AC 36 ms
53,812 KB
testcase_13 AC 413 ms
76,548 KB
testcase_14 AC 353 ms
76,856 KB
testcase_15 AC 606 ms
76,504 KB
testcase_16 AC 161 ms
76,484 KB
testcase_17 AC 305 ms
76,220 KB
testcase_18 AC 228 ms
76,380 KB
testcase_19 AC 196 ms
76,212 KB
testcase_20 AC 610 ms
76,648 KB
testcase_21 AC 326 ms
76,832 KB
testcase_22 AC 273 ms
76,720 KB
testcase_23 AC 1,333 ms
76,992 KB
testcase_24 AC 1,318 ms
76,552 KB
testcase_25 TLE -
testcase_26 AC 1,147 ms
76,880 KB
testcase_27 TLE -
testcase_28 AC 1,980 ms
77,932 KB
testcase_29 AC 1,132 ms
76,748 KB
testcase_30 AC 1,269 ms
76,680 KB
testcase_31 AC 1,997 ms
77,976 KB
testcase_32 AC 1,616 ms
76,824 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, Q = map(int, input().split())
    S = list(input())
    for _ in range(Q):
        L, R, X = map(lambda n: int(n) - 1, input().split())
        print(sorted(S[L:R + 1])[X])


if __name__ == "__main__":
    main()
0