結果

問題 No.643 Two Operations No.2
ユーザー taktak
提出日時 2018-03-18 16:55:08
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 12,716 ms
コンパイル使用メモリ 195,536 KB
実行使用メモリ 34,612 KB
最終ジャッジ日時 2024-06-08 03:17:17
合計ジャッジ時間 15,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
34,068 KB
testcase_01 AC 321 ms
33,804 KB
testcase_02 AC 317 ms
34,136 KB
testcase_03 AC 319 ms
34,224 KB
testcase_04 AC 326 ms
34,488 KB
testcase_05 AC 320 ms
34,484 KB
testcase_06 WA -
testcase_07 AC 322 ms
33,812 KB
testcase_08 WA -
testcase_09 AC 325 ms
34,580 KB
testcase_10 AC 322 ms
34,440 KB
testcase_11 AC 320 ms
34,612 KB
testcase_12 AC 314 ms
34,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (383 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(13,3): warning FS0026: この規則には一致しません [/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

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
| _            -> -1
| _ when abs X = abs Y -> 3
|> printfn "%i" 
0