結果

問題 No.1020 Reverse
ユーザー ks2mks2m
提出日時 2020-04-10 21:28:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 39,968 KB
最終ジャッジ日時 2024-09-15 19:09:39
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,132 KB
testcase_01 AC 56 ms
37,204 KB
testcase_02 AC 55 ms
37,060 KB
testcase_03 AC 56 ms
37,092 KB
testcase_04 AC 56 ms
36,812 KB
testcase_05 AC 55 ms
37,224 KB
testcase_06 AC 55 ms
37,172 KB
testcase_07 AC 101 ms
38,932 KB
testcase_08 AC 106 ms
39,484 KB
testcase_09 AC 101 ms
39,480 KB
testcase_10 AC 109 ms
39,788 KB
testcase_11 AC 112 ms
39,740 KB
testcase_12 AC 111 ms
39,908 KB
testcase_13 AC 109 ms
39,768 KB
testcase_14 AC 114 ms
39,692 KB
testcase_15 AC 115 ms
39,848 KB
testcase_16 AC 117 ms
39,968 KB
testcase_17 AC 109 ms
39,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int k = Integer.parseInt(sa[1]);
		String s = br.readLine();
		br.close();

		String t = s.substring(k - 1);
		StringBuilder sb = new StringBuilder(s.substring(0, k - 1));
		if (t.length() % 2 == 1) {
			sb.reverse();
		}
		System.out.println(t + sb.toString());
	}
}
0