結果

問題 No.1020 Reverse
ユーザー niuezniuez
提出日時 2020-04-10 21:26:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 168,036 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 18:56:20
合計ジャッジ時間 2,482 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(i64 (i) = (s);(i) < (e);(i)++)
#define all(x) x.begin(),x.end()

template<class T>
static inline std::vector<T> ndvec(size_t&& n, T val) noexcept {
  return std::vector<T>(n, std::forward<T>(val));
}

template<class... Tail>
static inline auto ndvec(size_t&& n, Tail&&... tail) noexcept {
  return std::vector<decltype(ndvec(std::forward<Tail>(tail)...))>(n, ndvec(std::forward<Tail>(tail)...));
}

template<class T, class Cond>
struct chain {
  Cond cond; chain(Cond cond) : cond(cond) {}
  bool operator()(T& a, const T& b) const {
    if(cond(a, b)) { a = b; return true; }
    return false;
  }
};
template<class T, class Cond>
chain<T, Cond> make_chain(Cond cond) { return chain<T, Cond>(cond); }

int main() {
  i64 N, K;
  cin >> N >> K;
  string S;
  cin >> S;
  string T = S.substr(K - 1, N - K + 1);
  string R = S.substr(0, K - 1);
  if((N - K) % 2 == 0) {
    reverse(all(R));
  }
  cout << T + R << endl;
}
0