結果

問題 No.729 文字swap
ユーザー NewbiekunNewbiekun
提出日時 2019-02-20 14:35:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 5,426 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-11-06 20:22:30
合計ジャッジ時間 6,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,264 KB
testcase_01 AC 136 ms
41,292 KB
testcase_02 AC 134 ms
41,724 KB
testcase_03 AC 139 ms
41,424 KB
testcase_04 AC 123 ms
40,256 KB
testcase_05 AC 132 ms
41,396 KB
testcase_06 AC 134 ms
41,140 KB
testcase_07 AC 135 ms
41,280 KB
testcase_08 AC 137 ms
41,176 KB
testcase_09 AC 136 ms
41,076 KB
testcase_10 AC 136 ms
41,148 KB
testcase_11 AC 136 ms
41,552 KB
testcase_12 AC 133 ms
41,368 KB
testcase_13 AC 120 ms
40,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No729
{
	public static void main(String args[])
	{
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int i = sc.nextInt();
		int j = sc.nextInt();

		char tmp = s[ i ];
		s[ i ] = s[ j ];
		s[ j ] = tmp;

// char[] sに入っている配列がString型になって返される。
		System.out.println( String.valueOf( s ) );
	}
}
0