結果

問題 No.905 Sorted?
ユーザー guriceringuricerin
提出日時 2020-02-12 14:02:50
言語 F#
(F# 4.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 1,556 bytes
コンパイル時間 7,553 ms
コンパイル使用メモリ 201,616 KB
実行使用メモリ 77,940 KB
最終ジャッジ日時 2024-10-04 01:00:50
合計ジャッジ時間 19,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
34,400 KB
testcase_01 AC 338 ms
34,832 KB
testcase_02 AC 342 ms
34,704 KB
testcase_03 AC 342 ms
34,564 KB
testcase_04 AC 341 ms
34,828 KB
testcase_05 AC 346 ms
34,992 KB
testcase_06 AC 343 ms
34,420 KB
testcase_07 AC 347 ms
35,656 KB
testcase_08 AC 470 ms
69,288 KB
testcase_09 AC 445 ms
66,404 KB
testcase_10 AC 469 ms
76,528 KB
testcase_11 AC 466 ms
67,216 KB
testcase_12 AC 485 ms
66,800 KB
testcase_13 AC 483 ms
77,940 KB
testcase_14 AC 481 ms
77,892 KB
testcase_15 AC 492 ms
68,344 KB
testcase_16 AC 519 ms
74,112 KB
testcase_17 AC 500 ms
73,688 KB
testcase_18 AC 464 ms
70,288 KB
testcase_19 AC 341 ms
34,448 KB
testcase_20 AC 340 ms
34,560 KB
testcase_21 AC 342 ms
34,704 KB
testcase_22 AC 341 ms
34,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (232 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(33,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/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 readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

// -----------------------------------------------------------------------------------------------------

// -----------------------------------------------------------------------------------------------------

let main() =
    let n = read int
    let bs = reada int64
    let bs = Array.append bs [| (Array.last bs) |]
    let fs = Array.zeroCreate (n + 1)
    let gs = Array.zeroCreate (n + 1)
    for i in 0 .. n - 1 do
        fs.[i + 1] <- fs.[i] + if bs.[i] <= bs.[i + 1] then 1 else 0
        gs.[i + 1] <- gs.[i] + if bs.[i] >= bs.[i + 1] then 1 else 0
    let q = read int
    for i in 0 .. q - 1 do
        let [| l; r |] = reada int
        let diff = r - l

        let okf =
            if fs.[r] - fs.[l] = diff then 1 else 0

        let okg =
            if gs.[r] - gs.[l] = diff then 1 else 0

        sprintf "%d %d" okf okg |> puts
    ()

// -----------------------------------------------------------------------------------------------------
main()
writer.Dispose()
0