結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | tak |
提出日時 | 2019-07-04 14:57:42 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,583 bytes |
コンパイル時間 | 6,528 ms |
コンパイル使用メモリ | 191,696 KB |
実行使用メモリ | 31,968 KB |
最終ジャッジ日時 | 2024-09-19 03:56:24 |
合計ジャッジ時間 | 8,458 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
29,824 KB |
testcase_01 | AC | 57 ms
29,952 KB |
testcase_02 | AC | 53 ms
29,592 KB |
testcase_03 | AC | 58 ms
29,440 KB |
testcase_04 | AC | 56 ms
29,568 KB |
testcase_05 | AC | 58 ms
29,824 KB |
testcase_06 | AC | 59 ms
30,080 KB |
testcase_07 | AC | 58 ms
29,824 KB |
testcase_08 | AC | 56 ms
29,440 KB |
testcase_09 | AC | 54 ms
29,824 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 59 ms
29,952 KB |
testcase_15 | AC | 57 ms
29,672 KB |
testcase_16 | AC | 59 ms
29,952 KB |
testcase_17 | AC | 56 ms
29,696 KB |
testcase_18 | AC | 58 ms
29,568 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (219 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
module Yuki open System let inline ret x = Some x let inline (>>=) (m: Option<'a>) f = match m with | Some x -> f x | None -> None type MaybeBuilder () = member __.Return(x) = ret x member __.Bind(m, f) = m >>= f let maybe = MaybeBuilder () let solve n = let num2list n = let rec f acc n = if n < 10 then n :: acc else f (n % 10 :: acc) (n / 10) f [] n let list2num xs = let rec f acc = function | [] -> acc | x :: xs -> f (acc * 10 + x) xs f 0 xs let swap idx1 idx2 xs = xs |> List.mapi (fun i v -> match i with | _ when i = idx1 -> xs.[idx2] | _ when i = idx2 -> xs.[idx1] | _ -> v) let digits = num2list n let indexedDigits = List.indexed digits let maxDigit = List.max digits maybe { let! swapLeftIdx = indexedDigits |> List.tryFind (fun (_, x) -> x < maxDigit) |> function | Some (idx, _) -> Some idx | None -> None let swapRightIdx = indexedDigits |> List.findBack (fun (_, x) -> x = maxDigit) |> fun (idx, _) -> idx let! swapLeftIdx, swapRightIdx = if swapLeftIdx < swapRightIdx then Some (swapLeftIdx, swapRightIdx) else None return digits |> swap swapLeftIdx swapRightIdx |> list2num } |> function | Some x -> x | None -> n let N = int <| Console.ReadLine() solve N |> Console.WriteLine