結果

問題 No.531 エヌスクミ島の平和協定
ユーザー taktak
提出日時 2018-04-09 08:04:10
言語 F#
(F# 4.0)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 15,020 ms
コンパイル使用メモリ 185,900 KB
実行使用メモリ 35,000 KB
最終ジャッジ日時 2024-09-19 18:37:16
合計ジャッジ時間 20,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
34,484 KB
testcase_01 AC 301 ms
34,368 KB
testcase_02 AC 305 ms
34,624 KB
testcase_03 AC 301 ms
34,060 KB
testcase_04 AC 300 ms
34,744 KB
testcase_05 AC 303 ms
34,488 KB
testcase_06 AC 301 ms
34,720 KB
testcase_07 AC 300 ms
34,880 KB
testcase_08 AC 307 ms
34,488 KB
testcase_09 AC 308 ms
34,104 KB
testcase_10 AC 303 ms
34,472 KB
testcase_11 AC 304 ms
34,464 KB
testcase_12 AC 295 ms
34,624 KB
testcase_13 AC 303 ms
34,756 KB
testcase_14 AC 304 ms
34,728 KB
testcase_15 AC 303 ms
34,624 KB
testcase_16 AC 298 ms
34,752 KB
testcase_17 AC 304 ms
34,588 KB
testcase_18 AC 301 ms
34,864 KB
testcase_19 AC 301 ms
34,628 KB
testcase_20 AC 310 ms
34,752 KB
testcase_21 AC 306 ms
34,196 KB
testcase_22 AC 306 ms
34,620 KB
testcase_23 AC 307 ms
34,616 KB
testcase_24 AC 305 ms
34,752 KB
testcase_25 AC 301 ms
34,616 KB
testcase_26 AC 312 ms
34,068 KB
testcase_27 AC 305 ms
34,616 KB
testcase_28 AC 304 ms
35,000 KB
testcase_29 AC 309 ms
34,744 KB
testcase_30 AC 300 ms
34,876 KB
testcase_31 AC 297 ms
34,108 KB
testcase_32 AC 308 ms
34,736 KB
testcase_33 AC 308 ms
34,852 KB
testcase_34 AC 301 ms
34,880 KB
testcase_35 AC 304 ms
33,932 KB
testcase_36 AC 315 ms
34,844 KB
testcase_37 AC 304 ms
34,464 KB
testcase_38 AC 302 ms
34,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (343 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 hoge = 
    let inline dump e =
    #if DEBUG
        printfn "%A" e; 
    #endif
        e
    let read() = stdin.ReadLine()
    let reads() = read().Split()
    let readToEnd() = stdin.ReadToEnd()
    let lines(s:string) = s.Split([|stdout.NewLine|], StringSplitOptions.RemoveEmptyEntries) 

let (|ODD|EVE|) n = 
    match n%2 with
    | 0 -> EVE
    | _ -> ODD

let n,m = let t = reads() |> Array.map(int) in t.[0],t.[1]

if n<=m then 1
else
    match n with 
    | ODD -> -1
    | EVE ->
        if n/2<=m then 2
        else          -1
|> printfn "%i"
0