結果

問題 No.939 and or
ユーザー guriceringuricerin
提出日時 2020-01-02 10:50:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 15,289 ms
コンパイル使用メモリ 198,420 KB
実行使用メモリ 34,632 KB
最終ジャッジ日時 2024-11-22 17:50:59
合計ジャッジ時間 24,139 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
34,204 KB
testcase_01 AC 65 ms
30,208 KB
testcase_02 AC 323 ms
34,620 KB
testcase_03 AC 63 ms
30,208 KB
testcase_04 AC 329 ms
34,632 KB
testcase_05 AC 332 ms
34,372 KB
testcase_06 AC 333 ms
33,948 KB
testcase_07 AC 332 ms
34,480 KB
testcase_08 AC 331 ms
34,480 KB
testcase_09 AC 66 ms
30,464 KB
testcase_10 AC 330 ms
33,944 KB
testcase_11 AC 331 ms
34,360 KB
testcase_12 AC 330 ms
34,376 KB
testcase_13 AC 330 ms
33,820 KB
testcase_14 AC 335 ms
34,356 KB
testcase_15 AC 334 ms
33,952 KB
testcase_16 AC 62 ms
30,080 KB
testcase_17 AC 334 ms
34,612 KB
testcase_18 AC 334 ms
33,816 KB
testcase_19 AC 326 ms
33,748 KB
testcase_20 AC 328 ms
34,376 KB
testcase_21 AC 331 ms
33,820 KB
testcase_22 AC 64 ms
30,080 KB
testcase_23 AC 328 ms
34,468 KB
testcase_24 AC 327 ms
34,624 KB
testcase_25 AC 336 ms
33,928 KB
testcase_26 AC 333 ms
34,068 KB
testcase_27 AC 333 ms
34,364 KB
testcase_28 AC 329 ms
34,496 KB
testcase_29 AC 349 ms
34,368 KB
testcase_30 AC 75 ms
30,320 KB
testcase_31 AC 350 ms
33,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (356 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(27,9): 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 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 ""

    let inline roundup (a: ^t) (b: ^t): ^t =
        let one = LanguagePrimitives.GenericOne
        (a + b - one) / b

[<EntryPoint>]
let main _ =
    let [|a;b|] = reada int64

    if (a &&& b <> a) then
        printfn "0"
    else
        let mutable ca = 0
        let mutable cb = 0
        for i in 0..33 do
            if (a >>> i) &&& 1L = 1L then ca <- ca + 1
            if (b >>> i) &&& 1L = 1L then cb <- cb + 1
        let e = max (cb - ca - 1) 0
        let ans = 1 <<< e
        printfn "%d" ans
    0 // return an integer exit code
0