結果

問題 No.643 Two Operations No.2
ユーザー taktak
提出日時 2018-03-18 16:56:03
言語 F#
(F# 4.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 6,880 ms
コンパイル使用メモリ 185,216 KB
実行使用メモリ 34,860 KB
最終ジャッジ日時 2024-06-08 03:17:49
合計ジャッジ時間 12,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
34,860 KB
testcase_01 AC 303 ms
34,748 KB
testcase_02 AC 314 ms
34,348 KB
testcase_03 AC 305 ms
33,896 KB
testcase_04 AC 314 ms
34,620 KB
testcase_05 AC 323 ms
34,064 KB
testcase_06 AC 311 ms
33,940 KB
testcase_07 AC 315 ms
34,196 KB
testcase_08 AC 308 ms
33,680 KB
testcase_09 AC 313 ms
34,352 KB
testcase_10 AC 306 ms
34,484 KB
testcase_11 AC 319 ms
33,932 KB
testcase_12 AC 319 ms
34,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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

let X,Y = 
    let t = Console.ReadLine().Split()
            |> Array.map(int)
    t.[0],t.[1]

match X,Y with
| _ when X = Y -> 0
| 0,_          -> 2
| _,0          -> 1
| _ when X = -Y -> 3
| _            -> -1
|> printfn "%i" 
0