結果

問題 No.264 じゃんけん
ユーザー chike_pluschike_plus
提出日時 2019-03-19 09:36:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 8,262 ms
コンパイル使用メモリ 198,924 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-13 12:23:50
合計ジャッジ時間 9,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
28,928 KB
testcase_01 AC 54 ms
28,916 KB
testcase_02 AC 55 ms
28,928 KB
testcase_03 AC 56 ms
29,184 KB
testcase_04 AC 55 ms
29,184 KB
testcase_05 AC 54 ms
29,056 KB
testcase_06 AC 54 ms
28,928 KB
testcase_07 AC 55 ms
28,928 KB
testcase_08 AC 55 ms
28,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (264 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(4,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '(_,3)' はパターンに含まれないケースを示す可能性があります。 [/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 ( |Won|Lost|Drew| ) (x,y) = 
  match (x , y) with
  | 0 , 1 | 1 , 2 | 2, 0 -> Won
  | 0 , 2 | 1 , 0 | 2, 1 -> Lost
  | 0 , 0 | 1 , 1 | 2, 2 -> Drew

let n, k = Console.ReadLine().Split(' ')
          |> fun s -> (s.[0] |> int, s.[1] |> int)

match (n, k) with
| Won -> Console.WriteLine "Won"
| Lost-> Console.WriteLine "Lost"
| Drew-> Console.WriteLine "Drew"
0