結果

問題 No.1020 Reverse
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 22:19:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 56,632 KB
最終ジャッジ日時 2024-09-14 15:42:44
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,112 KB
testcase_01 AC 133 ms
53,908 KB
testcase_02 AC 136 ms
54,096 KB
testcase_03 WA -
testcase_04 AC 133 ms
53,732 KB
testcase_05 AC 124 ms
53,112 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 219 ms
55,944 KB
testcase_09 AC 217 ms
56,124 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 227 ms
56,252 KB
testcase_13 AC 224 ms
56,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 230 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();
      int len = n - k + 1;
      String str1 = s.substring(0, k-1);
      String str2 = s.substring(k-1, n);
      System.out.println(str2 + str1);
  }
}
0