結果

問題 No.729 文字swap
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-02 16:06:23
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 916 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 8,534 ms
コンパイル使用メモリ 254,644 KB
実行使用メモリ 63,216 KB
最終ジャッジ日時 2024-07-01 05:22:15
合計ジャッジ時間 22,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 905 ms
62,996 KB
testcase_01 AC 911 ms
63,216 KB
testcase_02 AC 907 ms
63,124 KB
testcase_03 AC 911 ms
63,140 KB
testcase_04 AC 916 ms
62,884 KB
testcase_05 AC 892 ms
63,088 KB
testcase_06 AC 901 ms
62,868 KB
testcase_07 AC 916 ms
63,116 KB
testcase_08 AC 903 ms
62,888 KB
testcase_09 AC 902 ms
63,164 KB
testcase_10 AC 905 ms
63,172 KB
testcase_11 AC 893 ms
63,060 KB
testcase_12 AC 908 ms
63,148 KB
testcase_13 AC 909 ms
62,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    val i = indexes(0)
    val j = indexes(1)
    val answer = word.updated(i, word(j)).updated(j, word(i))
    println(answer)
  }
}
0