結果

問題 No.1471 Sort Queries
ユーザー bonKotsubonKotsu
提出日時 2021-04-12 22:42:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 523 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 172,512 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-28 18:09:20
合計ジャッジ時間 12,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,576 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 92 ms
5,376 KB
testcase_14 AC 78 ms
5,376 KB
testcase_15 AC 149 ms
5,376 KB
testcase_16 AC 31 ms
5,376 KB
testcase_17 AC 66 ms
5,376 KB
testcase_18 AC 42 ms
5,376 KB
testcase_19 AC 41 ms
5,376 KB
testcase_20 AC 151 ms
5,376 KB
testcase_21 AC 73 ms
5,376 KB
testcase_22 AC 57 ms
5,376 KB
testcase_23 AC 331 ms
5,376 KB
testcase_24 AC 341 ms
5,376 KB
testcase_25 AC 555 ms
5,376 KB
testcase_26 AC 296 ms
5,376 KB
testcase_27 AC 492 ms
5,376 KB
testcase_28 AC 488 ms
5,376 KB
testcase_29 AC 289 ms
5,376 KB
testcase_30 AC 316 ms
5,376 KB
testcase_31 AC 513 ms
5,376 KB
testcase_32 AC 425 ms
5,376 KB
testcase_33 TLE -
testcase_34 AC 816 ms
6,940 KB
testcase_35 AC 871 ms
6,940 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>

int main() {
  int n, q;
  cin >> n >> q;
  string s;
  cin >> s;
  vector<int> v(n);
  rep(i, n) v[i] = s[i]-'a';
  rep(i, q) {
    int l, r, x;
    cin >> l >> r >> x;
    l--, r--, x--;
    vector<int> subv;
    for (int j = l; j <= r; j++) subv.push_back(v[j]);
    sort(subv.begin(), subv.end());
    string ans;
    ans.push_back(subv[x]+'a');
    cout << ans << endl;
  }

}
0