結果

問題 No.729 文字swap
ユーザー fal_rndfal_rnd
提出日時 2019-02-08 19:36:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 942 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 7,837 ms
コンパイル使用メモリ 248,404 KB
実行使用メモリ 65,128 KB
最終ジャッジ日時 2024-07-01 11:29:40
合計ジャッジ時間 22,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 938 ms
64,776 KB
testcase_01 AC 942 ms
64,808 KB
testcase_02 AC 940 ms
64,908 KB
testcase_03 AC 931 ms
64,904 KB
testcase_04 AC 935 ms
65,012 KB
testcase_05 AC 935 ms
64,988 KB
testcase_06 AC 938 ms
65,036 KB
testcase_07 AC 930 ms
65,064 KB
testcase_08 AC 932 ms
64,924 KB
testcase_09 AC 935 ms
64,776 KB
testcase_10 AC 927 ms
64,996 KB
testcase_11 AC 934 ms
64,928 KB
testcase_12 AC 938 ms
64,968 KB
testcase_13 AC 934 ms
65,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App{
	val s = new java.util.Scanner(System.in)
	val a = s.next.toCharArray;
	val i,j = s.nextInt;
	val t = a(i);
	a(i) = a(j);
	a(j) = t;
	println(new String(a))
}
0