結果

問題 No.1471 Sort Queries
ユーザー umezoumezo
提出日時 2021-04-09 22:42:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 370 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 206,084 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-25 06:22:14
合計ジャッジ時間 11,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 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 2 ms
5,376 KB
testcase_13 AC 99 ms
5,376 KB
testcase_14 AC 86 ms
5,376 KB
testcase_15 AC 160 ms
5,376 KB
testcase_16 AC 33 ms
5,376 KB
testcase_17 AC 71 ms
5,376 KB
testcase_18 AC 47 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 164 ms
5,376 KB
testcase_21 AC 76 ms
5,376 KB
testcase_22 AC 61 ms
5,376 KB
testcase_23 AC 361 ms
5,376 KB
testcase_24 AC 351 ms
5,376 KB
testcase_25 AC 580 ms
5,376 KB
testcase_26 AC 310 ms
5,376 KB
testcase_27 AC 521 ms
5,376 KB
testcase_28 AC 519 ms
5,376 KB
testcase_29 AC 310 ms
5,376 KB
testcase_30 AC 337 ms
5,376 KB
testcase_31 AC 542 ms
5,376 KB
testcase_32 AC 455 ms
5,376 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  int n,q;
  string s;
  cin>>n>>q>>s;
  
  while(q--){
    int l,r,x;
    cin>>l>>r>>x;
    l--,r--,x--;
    
    string t=s;
    t=t.substr(l,r-l+1);
    sort(ALL(t));
    cout<<t[x]<<endl;
  }

  return 0;
}
0