結果

問題 No.1020 Reverse
ユーザー startcpp
提出日時 2020-04-10 22:04:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 66,688 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 20:24:26
合計ジャッジ時間 1,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, k;
string s;

int main() {
	int i;
	
	cin >> n >> k >> s;
	
	for (i = k - 1; i < n; i++) cout << s[i];
	if (n % 2 == k % 2) {
		for (i = k - 2; i >= 0; i--) cout << s[i];
	}
	else {
		for (i = 0; i < k - 1; i++) cout << s[i];
	}
	cout << endl;
	return 0;
}
0