結果
問題 | No.1020 Reverse |
ユーザー | toto6114 |
提出日時 | 2020-04-10 23:41:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,018 bytes |
コンパイル時間 | 920 ms |
コンパイル使用メモリ | 104,712 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 03:06:58 |
合計ジャッジ時間 | 1,608 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
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 | AC | 4 ms
5,376 KB |
ソースコード
/* _/ _/ _/_/_/ _/ _/_/_/_/ _/_/ _/_/_/_/ _/_/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/_/ _/_/ _/_/ _/_/ _/ */ #include<iostream> #include<algorithm> #include<cmath> #include<iomanip> #include<set> #include<map> #include<queue> #include<vector> using namespace std; using ll=long long; const int MOD=1e9+7; const double pi=3.14159265358979323846; const int inf=1e9; const ll INF=1e18; using P=pair<int,int>; int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1}; int main() { cin.tie(0),cout.tie(0); ios::sync_with_stdio(false); int n,k; string s; cin >> n >> k >> s; if(!((n-k+1)%2)) { for(int i=k-1; i<n; i++) { cout << s[i]; } for(int i=k-2; i>=0; i--) { cout << s[i]; } cout << "\n"; } else { for(int i=k-1; i<n; i++) { cout << s[i]; } for(int i=0; i<k-1; i++) { cout << s[i]; } cout << "\n"; } }