結果

問題 No.729 文字swap
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-02 15:58:50
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 8,656 ms
コンパイル使用メモリ 266,228 KB
実行使用メモリ 65,164 KB
最終ジャッジ日時 2024-07-01 05:21:38
合計ジャッジ時間 23,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 909 ms
65,084 KB
testcase_01 AC 906 ms
64,860 KB
testcase_02 AC 911 ms
65,044 KB
testcase_03 AC 914 ms
65,108 KB
testcase_04 AC 921 ms
65,164 KB
testcase_05 AC 921 ms
65,080 KB
testcase_06 AC 911 ms
64,912 KB
testcase_07 AC 911 ms
65,108 KB
testcase_08 AC 910 ms
64,916 KB
testcase_09 AC 915 ms
65,104 KB
testcase_10 AC 912 ms
65,044 KB
testcase_11 AC 909 ms
65,128 KB
testcase_12 AC 907 ms
65,056 KB
testcase_13 AC 902 ms
64,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Q729 {
  def main(args: Array[String]) = {
    val chars = io.StdIn.readLine().toSeq
    val indexes = io.StdIn.readLine().split(' ').map(_.toInt).toSeq

    val i = indexes(0)
    val j = indexes(1)
    val answer = chars.updated(i, chars(j)).updated(j, chars(i)).mkString("")
    println(answer)
  }
}
0