結果
| 問題 |
No.1020 Reverse
|
| コンテスト | |
| ユーザー |
veqcc
|
| 提出日時 | 2020-04-10 21:27:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 732 bytes |
| コンパイル時間 | 891 ms |
| コンパイル使用メモリ | 102,992 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-15 19:08:27 |
| 合計ジャッジ時間 | 1,626 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
#include <functional>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007LL;
int main() {
cin.sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, k;
cin >> n >> k;
string s;
cin >> s;
for (int i = 0; i < n - k + 1; i++) cout << s[i + k - 1];
for (int i = 0; i < k - 1; i++) {
if ((n - k + 1) % 2 == 0) {
cout << s[i];
} else {
cout << s[k - i - 2];
}
}
cout << endl;
return 0;
}
veqcc