結果

問題 No.1020 Reverse
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 23:26:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 3,955 ms
コンパイル使用メモリ 76,472 KB
実行使用メモリ 56,604 KB
最終ジャッジ日時 2024-09-14 15:45:51
合計ジャッジ時間 8,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,848 KB
testcase_01 AC 132 ms
54,104 KB
testcase_02 AC 134 ms
54,128 KB
testcase_03 AC 135 ms
54,412 KB
testcase_04 AC 129 ms
53,772 KB
testcase_05 AC 135 ms
54,108 KB
testcase_06 AC 135 ms
54,120 KB
testcase_07 AC 216 ms
54,232 KB
testcase_08 AC 226 ms
56,040 KB
testcase_09 AC 219 ms
56,368 KB
testcase_10 AC 232 ms
56,088 KB
testcase_11 AC 223 ms
56,604 KB
testcase_12 AC 228 ms
56,136 KB
testcase_13 AC 231 ms
56,284 KB
testcase_14 AC 235 ms
56,132 KB
testcase_15 AC 235 ms
56,268 KB
testcase_16 AC 237 ms
56,368 KB
testcase_17 AC 234 ms
56,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();
      int k = sc.nextInt();
      String s = sc.next();
      String str1 = s.substring(0, k-1);
      String str2 = s.substring(k-1, n);
      if((n - k) % 2 == 0) {
        StringBuilder sb = new StringBuilder(str1);
        str1 = sb.reverse().toString();
      }
      System.out.println(str2 + str1);
  }
}
0