結果

問題 No.39 桁の数字を入れ替え
ユーザー 👑 obakyanobakyan
提出日時 2019-05-01 09:35:53
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 03:32:30
合計ジャッジ時間 646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local orig = io.read("*n")
local t = {}
while(0 < orig) do
  local a = orig % 10
  table.insert(t, a)
  orig = math.floor(orig / 10)
end
local maxdig = 1
for i = 2, #t do
  if(t[maxdig] < t[i]) then maxdig = i end
end
local reppos = maxdig
for i = #t, maxdig, -1 do
  if(t[i] < t[maxdig]) then reppos = i break end
end
t[reppos], t[maxdig] = t[maxdig], t[reppos]
for i = #t, 1, -1 do
  io.write(t[i])
end
io.write("\n")
0