結果

問題 No.954 Result
ユーザー guriceringuricerin
提出日時 2019-12-18 10:12:00
言語 F#
(F# 4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,141 bytes
コンパイル時間 13,367 ms
コンパイル使用メモリ 186,288 KB
実行使用メモリ 35,728 KB
最終ジャッジ日時 2024-07-07 01:32:36
合計ジャッジ時間 25,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
34,340 KB
testcase_01 AC 287 ms
34,504 KB
testcase_02 AC 298 ms
35,120 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 287 ms
34,752 KB
testcase_08 AC 288 ms
34,800 KB
testcase_09 AC 287 ms
34,728 KB
testcase_10 AC 287 ms
34,292 KB
testcase_11 AC 295 ms
35,000 KB
testcase_12 AC 285 ms
34,996 KB
testcase_13 AC 286 ms
34,700 KB
testcase_14 AC 288 ms
34,344 KB
testcase_15 AC 295 ms
34,360 KB
testcase_16 AC 290 ms
35,128 KB
testcase_17 AC 290 ms
35,728 KB
testcase_18 AC 289 ms
34,556 KB
testcase_19 AC 301 ms
34,804 KB
testcase_20 AC 287 ms
34,548 KB
testcase_21 AC 286 ms
34,232 KB
testcase_22 AC 296 ms
34,468 KB
testcase_23 AC 288 ms
34,228 KB
testcase_24 AC 290 ms
34,812 KB
testcase_25 AC 295 ms
34,548 KB
testcase_26 AC 288 ms
34,496 KB
testcase_27 AC 289 ms
34,628 KB
testcase_28 AC 294 ms
34,496 KB
testcase_29 AC 297 ms
34,808 KB
testcase_30 AC 291 ms
35,468 KB
testcase_31 AC 305 ms
34,548 KB
testcase_32 AC 307 ms
34,548 KB
testcase_33 AC 305 ms
34,340 KB
testcase_34 AC 291 ms
35,128 KB
testcase_35 AC 298 ms
35,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (243 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 #

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 A = Array.zeroCreate 5
    for i in 0 .. 4 do
        A.[i] <- read int64

    let mutable fib = new SortedSet<int64>()
    let mutable a = 0L
    let mutable b = 1L
    while a <= int64 1e15 do
        fib.Add(a) |> ignore
        fib.Add(b) |> ignore
        a <- a + b
        b <- b + a

    let f n =
        printfn "%d" n
        exit (0)

    let mutable ans = 0
    if fib.Contains(A.[4]) then
        ans <- 1
        for i in 4 .. -1 .. 1 do
            let a = A.[i]
            let b = A.[i - 1]
            if a <= b && fib.Contains(a) && fib.Contains(b) then ans <- ans + 1
            else f ans
    else
        f 0

    printfn "%d" ans
    0 // return an integer exit code
0