結果

問題 No.1034 テスターのふっぴーさん
ユーザー ikdikd
提出日時 2020-05-02 00:49:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 9,719 ms
コンパイル使用メモリ 198,304 KB
実行使用メモリ 34,876 KB
最終ジャッジ日時 2024-06-07 14:14:27
合計ジャッジ時間 19,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
33,808 KB
testcase_01 AC 337 ms
34,864 KB
testcase_02 AC 338 ms
34,620 KB
testcase_03 AC 339 ms
34,508 KB
testcase_04 AC 340 ms
34,624 KB
testcase_05 AC 339 ms
34,628 KB
testcase_06 AC 338 ms
34,876 KB
testcase_07 AC 340 ms
34,632 KB
testcase_08 AC 343 ms
34,748 KB
testcase_09 AC 338 ms
34,756 KB
testcase_10 AC 339 ms
34,748 KB
testcase_11 AC 349 ms
34,720 KB
testcase_12 AC 341 ms
34,496 KB
testcase_13 AC 342 ms
34,504 KB
testcase_14 AC 342 ms
34,628 KB
testcase_15 AC 338 ms
33,952 KB
testcase_16 AC 338 ms
34,620 KB
testcase_17 AC 341 ms
34,596 KB
testcase_18 AC 341 ms
34,592 KB
testcase_19 AC 344 ms
34,500 KB
testcase_20 AC 340 ms
34,752 KB
testcase_21 AC 339 ms
34,736 KB
testcase_22 AC 338 ms
34,752 KB
testcase_23 AC 341 ms
34,752 KB
testcase_24 AC 343 ms
34,032 KB
testcase_25 AC 341 ms
34,492 KB
testcase_26 AC 340 ms
34,720 KB
testcase_27 AC 341 ms
34,584 KB
testcase_28 AC 342 ms
34,320 KB
testcase_29 AC 339 ms
34,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(21,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 #

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

open System

let solve n i j =
    let k = [i; n - i - 1L; j; n - j - 1L] |> List.min
    k * 4L * (n - k) + 
        if i = k then
            j - k
        elif j = n - k - 1L then
            n - k * 2L - 1L + i - k
        elif i = n - k - 1L then
            (n - k * 2L - 1L) * 2L + n - k - 1L - j
        else
            (n - k * 2L - 1L) * 3L + n - k - 1L - i

[<EntryPoint>]
let main argv =
    let q = stdin.ReadLine() |> int
    for qq = 1 to q do
        let [|n; i; j|] = stdin.ReadLine().Split() |> Array.map int64
        printfn "%d" (solve n i j)
    0 // return an integer exit code
0