結果
| 問題 | No.1471 Sort Queries |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-28 20:01:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 319 ms |
| コンパイル使用メモリ | 12,032 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2025-03-28 20:01:53 |
| 合計ジャッジ時間 | 29,366 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 TLE * 5 -- * 6 |
ソースコード
n, q = map(int, input().split())
s = list(input())
for i in range(q):
l, r, x = map(int, input().split())
t = s[l-1:r]
t.sort()
print(t[x-1])