結果

問題 No.164 ちっちゃくないよ!!
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-27 17:56:22
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 8,475 ms
コンパイル使用メモリ 186,444 KB
実行使用メモリ 35,844 KB
最終ジャッジ日時 2024-04-27 14:51:35
合計ジャッジ時間 12,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
35,012 KB
testcase_01 AC 323 ms
35,308 KB
testcase_02 AC 323 ms
35,528 KB
testcase_03 AC 325 ms
35,464 KB
testcase_04 AC 337 ms
35,180 KB
testcase_05 AC 338 ms
35,844 KB
testcase_06 AC 333 ms
35,836 KB
testcase_07 AC 329 ms
35,420 KB
testcase_08 AC 335 ms
35,688 KB
testcase_09 AC 332 ms
35,560 KB
testcase_10 AC 337 ms
35,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (282 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/

ソースコード

diff #

let tbl =
    "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    |> Seq.mapi (fun i c -> (c, int64 i))
    |> dict

let pow (b:int64) (e:int64) =
    let rec iter (c:int64) (acc:int64) =
        match c with
        | 0L -> acc
        | _ -> iter (c-1L) (acc*b)
    iter e 1L

let convert (s:string) =
    let a = s.ToCharArray() |> Array.rev
    let b = Seq.sort a |> Seq.last |> fun c -> tbl.Item(c) + 1L

    a
    |> Seq.mapi (fun i c -> tbl.Item(c) * (pow b (int64 i)))
    |> Seq.sum

let iter n =
    seq { for _ in 1..n -> stdin.ReadLine () }
    |> Seq.map convert

let calc = int >> iter >> Seq.sort >> Seq.head

stdin.ReadLine () |> calc |> printfn "%d"
0