結果

問題 No.729 文字swap
ユーザー N.MatsumotoN.Matsumoto
提出日時 2019-09-21 21:26:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-09-19 03:08:56
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,160 KB
testcase_01 AC 103 ms
40,280 KB
testcase_02 AC 99 ms
40,132 KB
testcase_03 AC 108 ms
41,384 KB
testcase_04 AC 112 ms
41,136 KB
testcase_05 AC 106 ms
40,032 KB
testcase_06 AC 101 ms
40,108 KB
testcase_07 AC 114 ms
41,128 KB
testcase_08 AC 107 ms
41,288 KB
testcase_09 AC 97 ms
39,588 KB
testcase_10 AC 95 ms
40,060 KB
testcase_11 AC 111 ms
40,936 KB
testcase_12 AC 114 ms
41,160 KB
testcase_13 AC 112 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String[] str = sc.next().split("");
        int from = sc.nextInt();
        int to = sc.nextInt();

        // 入れ替える文字を対比
        String fromStr = str[from];
        String toStr = str[to];

        // 文字入れ替え
        str[from] = toStr;
        str[to] = fromStr;

        String res = String.join("", str);
        System.out.print(res);
    }
}
0