結果

問題 No.1020 Reverse
ユーザー tonegawatonegawa
提出日時 2020-08-13 03:41:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 1,086 ms
コンパイル使用メモリ 70,704 KB
最終ジャッジ日時 2025-01-12 21:35:24
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;

int main(){
    int n, k;
    string s;
    cin >> n >> k >> s;
    string a = s.substr(k-1), b = s.substr(0, k-1);
    if((n-k+1)%2) reverse(b.begin(), b.end());
    cout << a << b << endl;
    return 0;
}
0