結果

問題 No.1471 Sort Queries
ユーザー shigeokushigeoku
提出日時 2021-04-09 21:49:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 165 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,240 KB
最終ジャッジ日時 2024-06-25 05:02:43
合計ジャッジ時間 27,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,360 KB
testcase_01 AC 37 ms
52,344 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 36 ms
52,544 KB
testcase_04 AC 38 ms
53,416 KB
testcase_05 AC 37 ms
53,008 KB
testcase_06 AC 36 ms
52,188 KB
testcase_07 AC 37 ms
53,240 KB
testcase_08 AC 40 ms
53,352 KB
testcase_09 AC 36 ms
52,504 KB
testcase_10 AC 36 ms
53,356 KB
testcase_11 AC 36 ms
52,404 KB
testcase_12 AC 37 ms
52,672 KB
testcase_13 AC 464 ms
78,128 KB
testcase_14 AC 390 ms
77,152 KB
testcase_15 AC 685 ms
78,392 KB
testcase_16 AC 173 ms
77,208 KB
testcase_17 AC 344 ms
77,752 KB
testcase_18 AC 246 ms
77,452 KB
testcase_19 AC 218 ms
77,004 KB
testcase_20 AC 706 ms
78,372 KB
testcase_21 AC 363 ms
77,628 KB
testcase_22 AC 304 ms
76,992 KB
testcase_23 AC 1,535 ms
81,444 KB
testcase_24 AC 1,537 ms
81,004 KB
testcase_25 TLE -
testcase_26 AC 1,325 ms
80,084 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,322 ms
79,768 KB
testcase_30 AC 1,462 ms
81,252 KB
testcase_31 TLE -
testcase_32 AC 1,875 ms
81,552 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
S = input()
Qn = [list(map(int, input().split())) for _ in range(Q)]


for l, r, i in Qn:
    s = S[l-1:r]
    print(sorted(s)[i-1])
0