結果

問題 No.39 桁の数字を入れ替え
ユーザー scalerscaler
提出日時 2024-09-01 17:09:39
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 949 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 9,010 ms
コンパイル使用メモリ 278,856 KB
実行使用メモリ 64,696 KB
最終ジャッジ日時 2024-09-01 17:10:11
合計ジャッジ時間 28,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
64,456 KB
testcase_01 AC 896 ms
64,460 KB
testcase_02 AC 949 ms
64,528 KB
testcase_03 AC 901 ms
64,372 KB
testcase_04 AC 921 ms
64,576 KB
testcase_05 AC 924 ms
64,620 KB
testcase_06 AC 901 ms
64,696 KB
testcase_07 AC 883 ms
64,580 KB
testcase_08 AC 918 ms
64,620 KB
testcase_09 AC 923 ms
64,408 KB
testcase_10 AC 900 ms
64,360 KB
testcase_11 AC 934 ms
64,644 KB
testcase_12 AC 929 ms
64,364 KB
testcase_13 AC 921 ms
64,556 KB
testcase_14 AC 910 ms
64,624 KB
testcase_15 AC 934 ms
64,472 KB
testcase_16 AC 935 ms
64,544 KB
testcase_17 AC 913 ms
64,592 KB
testcase_18 AC 899 ms
64,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

@main
def yuki39(): Unit =
  val s = readLine
  val t = s.toCharArray
  val n = s.length
  var ans: Int = s.toInt
  var temp = t(0)
  for
    i <- 0 until n
    j <- i + 1 until n
  do
    temp = t(i)
    t(i) = t(j)
    t(j) = temp
    ans = Math.max(ans, t.mkString.toInt)
    temp = t(i)
    t(i) = t(j)
    t(j) = temp
  println(ans)
0