結果

問題 No.643 Two Operations No.2
ユーザー taktak
提出日時 2018-03-18 16:53:42
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 13,277 ms
コンパイル使用メモリ 191,536 KB
実行使用メモリ 34,736 KB
最終ジャッジ日時 2024-06-08 03:15:14
合計ジャッジ時間 16,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
34,192 KB
testcase_01 AC 334 ms
34,592 KB
testcase_02 AC 333 ms
33,932 KB
testcase_03 AC 327 ms
34,320 KB
testcase_04 AC 331 ms
34,220 KB
testcase_05 AC 328 ms
34,716 KB
testcase_06 WA -
testcase_07 AC 326 ms
34,216 KB
testcase_08 WA -
testcase_09 AC 328 ms
34,060 KB
testcase_10 AC 331 ms
33,808 KB
testcase_11 AC 332 ms
34,064 KB
testcase_12 AC 329 ms
34,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (332 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          -> 1
| 0,_          -> 2
| _            -> -1
|> printfn "%i" 
0