結果

問題 No.1053 ゲーミング棒
ユーザー ikdikd
提出日時 2020-05-15 23:31:47
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 985 bytes
コンパイル時間 17,796 ms
コンパイル使用メモリ 185,664 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-19 13:50:38
合計ジャッジ時間 17,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
38,180 KB
testcase_01 AC 77 ms
36,096 KB
testcase_02 AC 356 ms
35,120 KB
testcase_03 AC 354 ms
34,984 KB
testcase_04 AC 355 ms
34,980 KB
testcase_05 AC 77 ms
30,968 KB
testcase_06 AC 77 ms
30,936 KB
testcase_07 AC 78 ms
30,848 KB
testcase_08 AC 353 ms
35,108 KB
testcase_09 AC 77 ms
30,720 KB
testcase_10 AC 77 ms
30,848 KB
testcase_11 AC 356 ms
35,112 KB
testcase_12 AC 353 ms
34,984 KB
testcase_13 AC 76 ms
30,592 KB
testcase_14 AC 76 ms
30,848 KB
testcase_15 AC 354 ms
34,852 KB
testcase_16 AC 77 ms
30,720 KB
testcase_17 AC 358 ms
34,988 KB
testcase_18 AC 353 ms
34,852 KB
testcase_19 AC 76 ms
30,848 KB
testcase_20 AC 77 ms
30,964 KB
testcase_21 AC 77 ms
30,720 KB
testcase_22 AC 354 ms
34,848 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (420 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 #

// Learn more about F# at http://fsharp.org

open System

let rec ok (a: seq<int>) (seen: Set<int>) =
    match a |> Seq.tryHead with
    | None -> true
    | Some(x) ->
        if seen.Contains x
        then false
        else ok (a |> Seq.skipWhile (fun y -> y = x)) (seen.Add x)

[<EntryPoint>]
let main argv =
    let n = stdin.ReadLine() |> int

    let a =
        stdin.ReadLine().Split()
        |> Array.map (fun x -> int (x) - 1)
        |> Array.toSeq

    if (ok a (new Set<int>([]))) then
        printfn "0"
        exit 0

    let mutable freq = Array.create n 0
    for x in a do
        freq.[x] <- freq.[x] + 1
    match freq |> Array.tryFindIndex (fun v -> v >= 2) with
    | None -> printfn "0"
    | Some(x) ->
        let b =
            [ (a |> Seq.skipWhile (fun y -> y = x))
              (a |> Seq.takeWhile (fun y -> y = x)) ]
            |> Seq.concat
        printfn "%d" (if (ok b (new Set<int>([]))) then 1 else -1)
    0 // return an integer exit code
0