結果

問題 No.729 文字swap
ユーザー fabled2468fabled2468
提出日時 2018-09-23 20:00:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-09-14 13:44:36
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,064 KB
testcase_01 AC 133 ms
40,920 KB
testcase_02 AC 130 ms
40,784 KB
testcase_03 AC 128 ms
40,904 KB
testcase_04 AC 116 ms
40,276 KB
testcase_05 AC 131 ms
40,876 KB
testcase_06 AC 129 ms
40,968 KB
testcase_07 AC 130 ms
40,780 KB
testcase_08 AC 133 ms
41,012 KB
testcase_09 AC 132 ms
41,320 KB
testcase_10 AC 132 ms
41,116 KB
testcase_11 AC 131 ms
41,096 KB
testcase_12 AC 136 ms
41,168 KB
testcase_13 AC 122 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main_729_swapString {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        String value0 = scan.next();
        int value1 = scan.nextInt();
        int value2 = scan.nextInt();
        scan.close();

        String result = String.join("", swapString(value0, value1, value2));
        System.out.println(result);
    }

    static String[] swapString(String value0, int value1, int value2) {

        String[] textList = value0.split("");

        String targetString1 = textList[value1];
        String targetString2 = textList[value2];

        textList[value2] = targetString1;
        textList[value1] = targetString2;

        return textList;
    }
}
0