結果

問題 No.933 おまわりさんこいつです
ユーザー guriceringuricerin
提出日時 2019-12-18 10:52:41
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 850 bytes
コンパイル時間 9,995 ms
コンパイル使用メモリ 198,748 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-07-06 01:43:00
合計ジャッジ時間 16,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
37,632 KB
testcase_01 AC 86 ms
40,732 KB
testcase_02 AC 84 ms
34,024 KB
testcase_03 AC 83 ms
34,048 KB
testcase_04 AC 86 ms
33,920 KB
testcase_05 AC 85 ms
34,688 KB
testcase_06 AC 88 ms
34,172 KB
testcase_07 AC 85 ms
34,048 KB
testcase_08 AC 86 ms
34,160 KB
testcase_09 AC 85 ms
34,304 KB
testcase_10 AC 85 ms
34,304 KB
testcase_11 AC 94 ms
35,312 KB
testcase_12 AC 102 ms
36,608 KB
testcase_13 AC 411 ms
58,240 KB
testcase_14 AC 727 ms
58,860 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (308 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(36,5): warning FS0020: この式の結果の型は 'int' で、暗黙的に無視されます。'ignore' を使用してこの値を明示的に破棄してください (例: 'expr |> ignore')。または 'let' を使用して結果を名前にバインドします (例: 'let result = expr')。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f

    let readInts() =
        read string
        |> Seq.toArray
        |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

module Util =
    let strRev s =
        s
        |> Seq.rev
        |> Seq.map string
        |> String.concat ""

[<EntryPoint>]
let main _ =
    let N = read int
    let P = reada int64

    let mutable k = Array.fold (fun acc (x: int64) -> acc * Numerics.BigInteger(x)) 1I P
    while k > 9I do
        let mutable a = k
        let mutable dsum = 0I
        while a > 0I do
            dsum <- dsum + (a % 10I)
            a <- a / 10I
        k <- dsum

    printfn "%A" k
    0 // return an integer exit code
    0 // return an integer exit code
0