結果

問題 No.39 桁の数字を入れ替え
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 13:25:41
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 898 ms / 5,000 ms
コード長 371 bytes
コンパイル時間 8,651 ms
コンパイル使用メモリ 277,792 KB
実行使用メモリ 64,604 KB
最終ジャッジ日時 2024-06-29 19:41:44
合計ジャッジ時間 27,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 866 ms
64,488 KB
testcase_01 AC 890 ms
64,280 KB
testcase_02 AC 879 ms
64,368 KB
testcase_03 AC 871 ms
64,528 KB
testcase_04 AC 868 ms
64,436 KB
testcase_05 AC 882 ms
64,536 KB
testcase_06 AC 875 ms
64,124 KB
testcase_07 AC 884 ms
64,364 KB
testcase_08 AC 876 ms
64,508 KB
testcase_09 AC 896 ms
64,136 KB
testcase_10 AC 879 ms
64,604 KB
testcase_11 AC 890 ms
64,400 KB
testcase_12 AC 868 ms
64,368 KB
testcase_13 AC 878 ms
64,492 KB
testcase_14 AC 897 ms
64,388 KB
testcase_15 AC 882 ms
64,564 KB
testcase_16 AC 877 ms
64,312 KB
testcase_17 AC 873 ms
64,080 KB
testcase_18 AC 898 ms
64,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main {
  def main(args: Array[String]): Unit = {
    val n = StdIn.readLine().toArray
    val sz = n.size

    var ans: Long = 0
    for (i <- (0 until sz); j <- (i until sz)) {
      val tmp = n.clone
      val ch = tmp(i)
      tmp(i) = tmp(j)
      tmp(j) = ch
      ans = Math.max(ans, tmp.mkString.toLong)
    }

    println(ans)
  }
}
0