結果

問題 No.729 文字swap
ユーザー tentententen
提出日時 2020-12-09 18:26:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 73,812 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-09-19 01:22:05
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,044 KB
testcase_01 AC 112 ms
41,312 KB
testcase_02 AC 102 ms
41,440 KB
testcase_03 AC 113 ms
41,684 KB
testcase_04 AC 123 ms
41,520 KB
testcase_05 AC 118 ms
41,352 KB
testcase_06 AC 127 ms
41,288 KB
testcase_07 AC 120 ms
41,216 KB
testcase_08 AC 118 ms
40,192 KB
testcase_09 AC 117 ms
41,056 KB
testcase_10 AC 131 ms
41,380 KB
testcase_11 AC 126 ms
41,280 KB
testcase_12 AC 127 ms
41,188 KB
testcase_13 AC 120 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int i = sc.nextInt();
        int j = sc.nextInt();
        char tmp = arr[i];
        arr[i] = arr[j];
        arr[j] = tmp;
        System.out.println(arr);
    }
}
0