結果

問題 No.1020 Reverse
ユーザー n_gojon_gojo
提出日時 2020-04-13 14:07:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 874 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 3,653 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 64,552 KB
最終ジャッジ日時 2024-09-24 20:21:25
合計ジャッジ時間 14,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,896 KB
testcase_01 AC 124 ms
54,016 KB
testcase_02 AC 126 ms
54,024 KB
testcase_03 AC 159 ms
54,300 KB
testcase_04 AC 135 ms
53,816 KB
testcase_05 AC 171 ms
54,336 KB
testcase_06 AC 141 ms
53,864 KB
testcase_07 AC 654 ms
64,484 KB
testcase_08 AC 741 ms
64,356 KB
testcase_09 AC 713 ms
64,152 KB
testcase_10 AC 804 ms
64,296 KB
testcase_11 AC 801 ms
64,440 KB
testcase_12 AC 784 ms
64,552 KB
testcase_13 AC 874 ms
64,480 KB
testcase_14 AC 816 ms
61,256 KB
testcase_15 AC 770 ms
64,428 KB
testcase_16 AC 765 ms
61,180 KB
testcase_17 AC 854 ms
64,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1020 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        String str = sc.next();
        char[] c = str.toCharArray();
        for(int i=0;i<n;i++) {
            if(i<(n-k+1)) {
                System.out.print(c[i+k-1]);
            }else{
                if((n-k)%2==1){
                    System.out.print(c[i-(n-k+1)]);
                }else{
                    System.out.print(c[n-i-1]);
                }
            }
        }
        System.out.println("");
    }
}
0