結果

問題 No.1020 Reverse
ユーザー port_sshport_ssh
提出日時 2020-04-10 22:41:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 79,648 KB
実行使用メモリ 7,812 KB
最終ジャッジ日時 2023-10-14 01:35:00
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <numeric>
#include <string>
#include <map>
#include <stack>
using namespace std;
typedef long long int lli;
#define urept(soeji, start, n) for (int soeji = start; soeji < n; soeji++)
#define drept(soeji, start, n) for (int soeji = start; soeji > n; soeji--)
int main(void)
{
    int N, K;
    cin >> N >> K;
    string s;
    cin >> s;
    int x = N - K + 1;
    for (int i = 0; i < x; i++)
    {
        //reverse(s.begin() + i, s.begin() + (i + K));
        for (int j = i; j < K; j++)
        {
            swap(s[j], s[i + K - 1]);
        }
    }
    cout << s << endl;
    return 0;
}
0