結果
問題 | No.1020 Reverse |
ユーザー | gon_027 |
提出日時 | 2020-06-24 19:20:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,276 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 85,628 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 03:52:12 |
合計ジャッジ時間 | 1,845 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <iostream> #include <cmath> #include <string> #include <vector> #include <map> #include <algorithm> #include <queue> #include <stack> #include <list> #include <deque> #include <set> using namespace std; using ll = long long; using ld = long double; const ll MOD = 1000000000 + 7; const ll INF = 1e+9; const ld PI = acos((long double)(-1)); #define no "no" #define No "No" #define NO "NO" #define yes "yes" #define Yes "Yes" #define YES "YES" #define next '\n' #define sp " " #define print(x) cout << (x) << endl; #define rep(i, n) for(int (i) = (0); (i) < (n); (++i)) #define FOR(i, start, end) for(int (i) = (start); (i) < (end); (++i)) #define foreach(elem, _list) for(auto& (elem) : (_list)) #define view(_list) foreach(e, _list){ cout << e << sp; } cout << next #define FAST ios::sync_with_stdio(false); cin.tie(nullptr) #define size(s) (s).size() #define ALL(vec) (vec).begin(), (vec).end() #define pb(e) push_back(e) #define EPS 0.00000001 int main() { FAST; int n, k; string s; cin >> n >> k >> s; int len = n - k + 1; string t, u; for(int i = 0; i < len; ++i){ t += s[i]; } for(int i = len; i < n; ++i){ u += s[i]; } if((n - k) % 2 != 0){ reverse(ALL(t)); } print(t + u); }